以下是npm常用的命令:
- npm init:初始化一个新的npm项目。
- npm install:安装项目所需的所有依赖。
- npm install :安装指定的npm包。
- npm install --save :安装指定的npm包,并将其添加到项目的dependencies中。
- npm install --save-dev :安装指定的npm包,并将其添加到项目的devDependencies中。
- npm uninstall :卸载指定的npm包。
- npm update :更新指定的npm包。
- npm update:更新项目中所有的npm包。
- npm run :运行项目中的自定义脚本。
- npm start:通过指定的入口文件启动项目。
- npm test:运行项目中的测试脚本。
- npm publish:发布项目到npm仓库。
- npm version :更新项目的版本号。
- npm outdated:检查项目中过时的npm包。
- npm prune:删除项目中不再需要的npm包。
- npm search :搜索npm仓库中的包。
- npm config set :设置npm的配置项。
- npm config get :获取npm的配置项。
- npm config delete :删除npm的配置项。
这些是npm的一些常用命令,可以根据项目的需求选择合适的命令使用。