标签:修复 doc 目录 conf ext 清空 date 版本号 多命令
npm init/install
语义版本号分为X.Y.Z三位,分别代表主版本号、次版本号和补丁版本号。当代码变更时,版本号按以下原则更新。
https://docs.npmjs.com/getting-started/fixing-npm-permissions
nvm install
https://www.cnblogs.com/cllgeek/p/6076280.html
npm --registry=https://registry.npm.taobao.org install
npm config set registry http://registry.npmjs.org/
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
这样就可以使用 cnpm 命令来安装模块了:
$ cnpm install [name]
NPM提供了很多命令,例如install
和publish
,使用npm help
可查看所有命令。
使用npm help <command>
可查看某条命令的详细帮助,例如npm help install
。
在package.json
所在目录下使用npm install . -g
可先在本地安装当前命令行程序,可用于发布前的本地测试。
使用npm update <package>
可以把当前目录下node_modules
子目录里边的对应模块更新至最新版本。
使用npm update <package> -g
可以把全局安装的对应命令行程序更新至最新版。
使用npm cache clear
可以清空NPM本地缓存,用于对付使用相同版本号发布新版本代码的人。
使用npm unpublish <package>@<version>
可以撤销发布自己发布过的某个版本代码。
npm cache
Please try:
rm -rf node_modules
rm package-lock.json
npm cache clear --force
npm install
rm -rf ./node_modules
npm i
npm shrinkwrap
rm -rf ./node_modules
npm cache clear --force
npm i
npm shrinkwrap
标签:修复 doc 目录 conf ext 清空 date 版本号 多命令
原文地址:https://www.cnblogs.com/SZLLQ2000/p/9315161.html