npm與yarn的一些筆記

ThinkPet發表於2020-11-08
node.js 自帶了npm

npm是node.js的包管理器,類似於java世界的maven

npm預設的映象源訪問很慢,一般都使用國內的映象源
方法1:安裝淘寶cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
方法2: 把npm的預設映象源改為淘寶的映象
npm config set registry https://registry.npm.taobao.org

npm常用命令
安裝所有依賴 npm install
安裝單個依賴法1  npm install 依賴名 --save
安裝單個依賴法2  npm -S install 依賴名

執行專案 npm run dev (vue2專案)
執行專案 npm run serve (vue3專案)
打包專案 npm run build

===========================================

Yarn 是一個可以替代npm的node.js包管理器,它比npm/cnpm安裝依賴更快
官網https://yarn.bootcss.com/docs/getting-started/

npm全域性安裝yarn
npm install -g yarn --registry=https://registry.npm.taobao.org

npm命令對應的yarn命令
https://yarn.bootcss.com/docs/migrating-from-npm/

yarn設定淘寶源
yarn config set registry https://registry.npm.taobao.org -g
yarn config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass -g

yarn常用命令
安裝所有依賴 yarn install
安裝某個依賴 yarn add [package]
清除本地快取 yarn cache clean
刪除一個依賴包 yarn remove [package]
執行專案  yarn run serve
打包專案   yarn run build

相關文章