Nodejs命令
npm命令
安装在项目目录下才能require, 通过-g安装的是全局的,全局安装的只能通过命令行调用(如果包里有bin的话)
-
npm root [-g] 输出 node_modules的路径
-
npm uninstall [-g] | [—save-dev]卸载npm安装的包
-
npm ls -g —depth 0列出全局安装的包
-
npm install [email protected] 安装指定版本
tencent镜像
- npm set registry https://mirrors.tencent.com/npm/
- yarn config set registry https://mirrors.tencent.com/npm/
npm镜像
npm config set registry http://registry.npmjs.org
查看镜像
npm /yarn config get registry
npm命令简写
npm i 即npm install简化的命令。
命令行参数的缩写方式:
npm发布
-
npm init
-
npm login / npm adduser (first)
-
npm publish
注意点:
npm包的更新
- 修改包的版本(package.json里的version字段)
- npm publish
npm撤销发布
-
npm unpublish 包名
-
npm deprecate <pkg>[@<version>] <message>
使用这个命令,并不会在社区里撤销你已有的包,但会在任何人尝试安装这个包的时候得到警告 例如:npm deprecate penghuwanapp ‘这个包已经废弃!!’