使用 Nexus Repository Manager 搭建 npm 私服

環境

  • windows10(1803)shell

  • Nexus Repository Manager OSS 3.xnpm

下載與安裝

  1. 在官網下載Nexus Repository Manager OSS 3.x, 解壓至任意位置.
  2. 管理員運行 powershell, 切換到 nexus-3.13.0-01/bin 目錄json

    $./nexus.exe /install 進行安裝, 成功後會提示 Installed service 'nexuswindows

    $./nexus.exe /run 運行服務, 第一次要耐心等待好久服務器

  3. 等待啓動完畢後, 進入 http://127.0.0.1:8081, 點擊右上角 Sign In 登錄, 默認帳號: admin 密碼: admin123grunt

添加npm倉庫

如下輸入的Name都是根據本身需求修改url

  • 點擊在左側菜單Repositories, 而後點擊Create repository按鈕.
  • 選擇 npm(proxy), 輸入 Name: npm-proxy, remote storage 填寫 https://registry.npm.taobao.orghttps://registry.npmjs.org. 用於將包情求代理到地址地址
  • 再次點擊Create repository按鈕., 增長 npm(hossted) 輸入 Name: npm-xueyou 用於存放本身的私有包
  • 再次點擊Create repository按鈕.,增長npm(group) 輸入 Name: npm-all, 下面Member repositories裏選擇以前添加的2個移動右邊

配置與驗證npm倉庫

  • $npm config set registry http://localhost:8081/repository/npm-all/ 這裏的url在倉庫 npm-all 右邊有獲取url
  • 隨便進入一個目錄, 初始化package, npm init -y, npm --loglevel info install grunt 查看是否從本身的倉庫地址拉取包
  • 設置權限, Realms 菜單, 將 npm Bearer Token Realm 添加到右邊
  • 添加用戶, 而後 npm login –registry=http://192.168.0.102:8081/repository/npm-all/ 進行登錄,須要填寫帳號、密碼以及郵箱
  • 登錄 npm login --registry=http://192.168.0.102:8081/repository/npm-all/ 輸入剛纔新建用戶的用戶和密碼和郵箱

發佈本身的包

確保要發佈的模塊跟目錄有 package.json 文件.net

  1. 添加用戶 npm adduser -registry http://192.168.0.102:8081/repository/npm-xueyou/
  2. 發佈包, npm publish –registry http://192.168.0.102:8081/repository/npm-xueyou/
  3. 修改 package.json 添加 "publishConfig": { "registry": "http://192.168.0.102:8081/repository/npm-xueyou/" }, 這樣直接npm publish就發佈了

Nexus開啓啓動

  1. nexus/bin 目錄添加到環境變量
  2. 新建 nexus-start.bat 輸入 nexus.exe /run 保存
  3. win + r 輸入 shell:startup 打開 C:\Users\tangdekun\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup 目錄, 將文件放進

腳註

Node Packaged Modules and npm Registries
上傳本地服務器
開啓啓動代理

相關文章
相關標籤/搜索