Js通过npm的形式安装
官网
创建账号
执行命令
-
npm init
-
npm install -g 检查是否报错
-
npm link(旨在安装开发包并实时查看更改,而无需继续重新安装)
-
npm login --registry http://registry.npmjs.org 登录npm账号
-
npm publish --registry http://registry.npmjs.org 上传代码到npm包管理库
-
npm install xxx --save
- 其他项目需要使用
-
npm version patch 更新版本号
-
修改后再次发布
网友评论