npm语法 yarn语法
npm init ---- yarn init
npm install ---- yarn
npm install xxx@xxx -g ---- yarn global add xxx@xxx
npm install xxx@xxx --save ---- yarn add xxx@xxx
npm install xxx@xxx --save-dev ---- yarn add xxx@xxx --dev
npm uninstall xxx --save(-dev) ----yarn remove xxx
npm run xxx ---- yarn run xxxx
网友评论