npm命令,開發依賴,版本號【正解】

npm i 私有庫的包例如gitlab:
git+ssh://git@github.com:npm/cli.git#v1.0.27
"axios": "latest", // 最新版本
 // semver:^1.6會安裝上 1.6.68
"@rrcfe/sdk": "git+http://gitlab.rrc.com/fe/node-sdk.git#semver:^1.6",
git+https://isaacs@github.com/npm/cli.git
git://github.com/npm/cli.git#v1.0.27
git+http://gitlab.rrc.com/fe/notify-sdk.git#master // 分支
ssh:git@gitlab.rrc.com:fe-template/jenkins-scripts.git // yarn支持ssh

複製代碼
版本號~和^的區別:
  • ~會匹配最近的小版本依賴包,好比~1.2.3會匹配全部1.2.x版本,可是不包括1.3.0
  • ^會匹配最新的大版本依賴包,好比^1.2.3會匹配全部1.x.x的包,包括1.3.0,可是不包括2.0.0
  • 在項目根目錄的package.json裏面和 node_modules裏面的 package.json 有區別
  1. 項目根目錄的package.json 裏面 ^1.2.3 會安裝到最高的1.2.x版本,想改更高,手動改
  2. node_modules的 package.json 裏面 ^1.2.3 會安裝到最高的1.x.x版本
dependencies 和 devDependencies(開發依賴)的區別:
  • dependencies依賴包在項目根目錄或者node_modules裏面的 package.json 裏面 npm i的時候 都會安裝
  • devDependencies 在node_modules裏面的 package.json 裏面 npm i的時候 不會安裝
npm version

semver 約定一個包的版本號必須包含3個數字,格式必須爲 MAJOR.MINOR.PATCH, 意爲 主版本號.小版本號(增長新功能).修訂版本號(fix bug). 能夠簡單地將版本號中相應的數字加1.vue

npm version major|minor|patch
複製代碼
查看npm安裝目錄:
npm root -g
複製代碼
查看npm的prefix和cache路徑配置信息:
npm config get prefix
npm config get cache
複製代碼
修改全局和緩存路徑
  • 先在設置路徑目錄下新建兩個文件夾(eg:node_global和node_cache),eg:直接在nodejsd安裝目錄下
npm config get prefix
npm config get cache
複製代碼
  • 設置路徑 一般不用改
npm config set prefix "D:\ProgramFile\nodejs\node_modules\node_global"
 
npm config set cache "D:\ProgramFile\nodejs\node_modules\node_cache"

複製代碼
設置npm鏡像源
npm config set registry https://registry.npm.taobao.org --global
// 設置node源碼的源
npm config set disturl https://npm.taobao.org/dist --global
複製代碼
查看鏡像的配置結果
npm config get registry
複製代碼
確保 當前源 在npm 上
npm config set registry https://registry.npmjs.org/
複製代碼
快捷修改.npmrc配置文件
npm config edit

// 查看
npm config list
複製代碼
npm 用戶名
npm whoami
複製代碼
打開包的官網
npm docs express
npm home vue
複製代碼
cnpm同步模塊
// 直接經過 sync 命令立刻同步一個模塊, 只有 cnpm 命令行纔有此功能:
cnpm sync connect
// 固然, 你能夠直接經過 web 方式來同步: /sync/connect
open https://npm.taobao.org/sync/connect
複製代碼
.npmrc 文件配置只針對當前項目
package-lock = false // 若是用yarn 加上
registry=https://registry.npm.taobao.org/
sass_binary_site=https://npm.taobao.org/mirrors/node-sass/
phantomjs_cdnurl=https://npm.taobao.org/mirrors/phantomjs
electron_mirror=https://npm.taobao.org/mirrors/electron/
複製代碼
.npmignore 包發佈時候忽略文件,沒有這個文件會讀取.gitignore
  • 想設置發佈文件的白名單,設置package.json中的files屬性。
files:["package.json","src"]
複製代碼
  • 這裏的優先級是files>.npmignore>.gitignore
.DS_Store
.idea
node_modules
.git
reports
npm-debug.log*
stats.json
coverage
.vscode/
.tmp
.idea
build
複製代碼
other
  • 使用npm install下載你想要起的包名字,若是報錯404,那麼你的包名是可用的。
  • 使用 npm install -g 將你當前的項目安裝到全局環境,如今你能夠在命令行使用"my-cli"命令了。
  • npm adduser
  • npm publish
  • 卸載npm uninstall <pkg> 或者 npm uninstall <name>@[<version>]
  • 更新某一個pkg版本npm update <pkg>@<version>
文件通配符:glob模式
  • * 匹配任意多個字符,除了/
  • ? 匹配除了/以外的單個字符
  • ** 匹配任意多個字符,包括 /
  • {}匹配用逗號分割的 or 列表
  • ! 用在模式的開頭,表示取反.npmignore
相關文章
相關標籤/搜索