• home > webfront > ECMAS > npm-node >

    使用npm发布npm组件包和使用git上面的私有包操作笔记

    Author:[email protected] Date:

    平时我们从npmjs org github上面找到的包,并不完全符合我们的需要,所以我们需要修改,发布自己包,比如发布到npm上,或者github上面,或者自己的内外,gitlab上面。该如何操作呢?

    平时我们从npmjs.org github上面找到的包,并不完全符合我们的需要,所以我们需要修改,发布自己包,比如发布到npm上,或者github上面,或者自己的内外,gitlab上面。该如何操作呢?

    使用npm发布npm组件包

    1. 首先需要有npm账号,可以直接登录官网https://www.npmjs.com/signup免费注册,注册后一定要进行邮箱验证,否则后面进行组件包发布时候会提示403错误,让进行邮箱核准。

    2. 使用npm init 命令初始化当前项目信息

    3. 我喜欢一路按enter,然后在intelij 里面编写

    4. npm login 登录npm 输入: 账号登录,用户名,邮箱,密码

    5. 使用npm  publish发布组件包

    但是在内网,是不允许发布的。

    npm 发布和安装私有 git 包

    npm i git+https://username:[email protected]/path/reposity#master

    npm i git+https://http://git.example.com/path/reposity

    也可以修改 package.json

     "youPackage": "git+<a href="http://zhoulujun.cn/path/yourPackage",">http://zhoulujun.cn/path/yourPackage",

    然后npm i 安装


    转载本站文章《使用npm发布npm组件包和使用git上面的私有包操作笔记》,
    请注明出处:https://www.zhoulujun.cn/html/webfront/ECMAScript/nodejs/2705.html