npm发布公共模块
npm发布公共模块
修改日期:2019年01月22日
版本:v1.0
作者:whl
[toc]
1. 创建模块
# 初始化项目
# 组织名称pi2star
npm init --scope=pi2star
2. 发布模块
2.1 切换回npm官方仓库
# 使用nrm切换
nrm use npm
2.2 登录npm
# 注册npm账号
# 确认已经加入组织
# 登陆npm账号
npm login
控制台输出
wanghualongdeMacBook-Pro:org-test wanghualong$ npm login
Username: w958660278
Password:
Email: (this IS public) [email protected]
Logged in as w958660278 on https://registry.npmjs.org/.
2.3 发布package至npm
# 免费私有仓库需加access参数
npm publish --access public