Skip to content

拉取npm包源码并进行修改

  1. 找到npm仓库中源码 github地址

    • git clone 源码
  2. 修改漏洞或其他问题代码

  3. 修改package.json

image-20240621110408014以上修改完毕

上传npm 包到私有仓库

  1. 修改npm 镜像为私有仓库
npm config set registry 私有仓库地址 例如:https://registry.arongwang.xyz
  1. 登录私有仓库
npm login
  • 根据提示输入用户名、密码、邮箱等信息
  1. 在需要上传的npm包源码的根目录下执行上传命令
npm publish