美文网首页
#第四十六天#npm 发包

#第四十六天#npm 发包

作者: 532546c1938d | 来源:发表于2018-03-02 11:08 被阅读20次

    1、初始化项目

    mkdir test

    cd test

    npm init

    touch index.html

    vi index.html 随便console什么内容

    2、准备发包

    首先在npm官网上注册一个账户 username和邮箱信息填写,在邮箱中确认

    在test目录下

    npm adduser

    输入注册的信息后

    npm publish 就ok了

    3、踩过的坑:

    命名已经登录注册 但是仍然报unauthorized Login first的错误,原因是npm 的镜像是淘宝镜像导致

    报错

    解决方案:npm config set registry https://registry.npmjs.org/

    把registry地址改为官方地址就可以了

    相关文章

      网友评论

          本文标题:#第四十六天#npm 发包

          本文链接:https://www.haomeiwen.com/subject/paaoxftx.html