美文网首页
向npm上发布自己的包

向npm上发布自己的包

作者: 小小的开发人员 | 来源:发表于2019-06-18 16:53 被阅读0次
    1. 登录npm官网先注册个账户
    1. 在控制台关联npm账号,输入刚刚注册的账号、密码
    npm adduser
    
    1. 写好package.json、README.md
    {
      "name": "vxquery",
      "version": "1.0.4",
      "description": "轻量级操作DOM的JS库",
      "main": "index.js",
      "scripts": {
        "test": "echo \"Error: no test specified\" && exit 1"
      },
      "repository": {
        "type": "git",
        "url": "git+https://github.com/webzhuyongbo/vQuery.git"
      },
      "keywords": [
        "Lightweight",
        "DOM",
        "jQuery"
      ],
      "author": "zhuyongbo",
      "license": "ISC",
      "bugs": {
        "url": "https://github.com/webzhuyongbo/vQuery/issues"
      },
      "homepage": "https://github.com/webzhuyongbo/vQuery#readme"
    }
    
    1. npm publish,这里可以选择是公开的还是私人的
     npm publish --access public
    

    第一次操作会报下列错,报错信息要求你进入你注册的邮箱确认一下

    npm ERR! publish Failed PUT 403
    npm ERR! code E403
    npm ERR! you must verify your email before publishing a new package: https://www.npmjs.com/email-edit : vxquery
    

    进入邮箱点击确认

    1. 再次npm publish,上传成功


    显示上传成功后,我这里并不能马上在npm官网上搜索到我上传的包,但是我的账号上显示已经上传成功了,等了大概15min后,就可以搜索到我的包了,应该是需要时间审核,耐心等一会。
    然后我迫不及待的yarn add vxquery


    接下来在文件中引入了包文件,也没问题,这样就成功地向npm中发布自己的包。
    1. 更新包文件,需要修改package.json里的版本号,再次pulish下就行了。

    相关文章

      网友评论

          本文标题:向npm上发布自己的包

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