npm 发布注意事项
查看当前镜像
注:上传npm需要使用 registry.npmjs 镜像, 但是在开发中使用原始镜像很多时候会出现下载第三方库师表的情况。建议:在开发中使用 npm.taobao.org(淘宝)镜像,上传npm时使用 registry.npmjs 镜像
npm get registry
镜像需切换回registry镜像
npm config set registry https://registry.npmjs.org/
更新完毕后可切换回淘宝镜像
npm config set registry https://registry.npm.taobao.org
第一次发布
// npm publish name[@版本]
npm publish xq-type-script-framework@1.0.1
或
// 版本好会根据 package.json 中 version 自行更改
npm publish
更新
// 版本好会根据 package.json 中 version 自行更改
npm publish