搭建私有npm

安装

npm install verdaccio -g 

运行

全局安装verdaccio后可直接运行,运行命令如下

verdaccio

修改配置

默认verdaccio不能被本机以外访问,这里谈添加listen字段,修改为"listen: 0.0.0.0:4873"。其他的配置使用默认的。(配置文件位置,可以通过安装时控制台打印找到)

#
# This is the default config file. It allows all users to do anything,
# so don't use it on production systems.
#
# Look here for more config file examples:
# https://github.com/verdaccio/verdaccio/tree/master/conf
#

# path to a directory with all packages
storage: ./storage
# path to a directory with plugins to include
plugins: ./plugins

web:
  # WebUI is enabled as default, if you want disable it, just uncomment this line
  #enable: false
  title: Verdaccio

auth:
  htpasswd:
    file: ./htpasswd
    # Maximum amount of users allowed to register, defaults to "+inf".
    # You can set this to -1 to disable registration.
    #max_users: 1000

# a list of other known repositories we can talk to
uplinks:
  npmjs:
    url: https://registry.npm.taobao.org/

packages:
  '@*/*':
    # scoped packages
    access: $all
    publish: $authenticated
    proxy: npmjs

  '**':
    # allow all users (including non-authenticated users) to read and
    # publish all packages
    #
    # you can specify usernames/groupnames (depending on your auth plugin)
    # and three keywords: "$all", "$anonymous", "$authenticated"
    access: $all

    # allow all known users to publish packages
    # (anyone can register by default, remember?)
    publish: $authenticated

    # if package is not available locally, proxy requests to 'npmjs' registry
    proxy: npmjs

# You can specify HTTP/1.1 server keep alive timeout in seconds for incomming connections.
# A value of 0 makes the http server behave similarly to Node.js versions prior to 8.0.0, which did not have a keep-alive timeout.
# WORKAROUND: Through given configuration you can workaround following issue https://github.com/verdaccio/verdaccio/issues/301. Set to 0 in case 60 is not enought.
server:
  keepAliveTimeout: 60

# To use `npm audit` uncomment the following section
middlewares:
  audit:
    enabled: true
# 这里开发外网访问
listen: 0.0.0.0:4873
# log settings
logs:
  - {type: stdout, format: pretty, level: http}
  #- {type: file, path: verdaccio.log, level: info}

安装nrm

nrm是npm源切换工具。安装命令如下所示:

npm install nrm -g

常用命令
nrm ls //查看源
nrm add // 添加源
nrm del //删除源

添加源

//nrm add <源名称>  <源地址>
nrm add mynpm http://localhost:4873

注册私有npm用户

npm use mynpm //切换到私有源
//在私有源上注册用户
npm adduser -registry http://localhost:4873
按照提示输入注册信息

你可能感兴趣的:(搭建私有npm)