로메오의 블로그

npm vs yarn 명령어 비교 본문

Backend/node

npm vs yarn 명령어 비교

romeoh 2019. 11. 22. 11:02
반응형

ㅁnpm yarn 명령어 비교입니다.

npm yarn
npm install jquery --save yarn add jquery
npm install jquery@lastest yarn add jquery
npm install jquery --global yarn global add jquery
npm install jquery --save-dev yarn add jquery --dev
npm uninstall jquery --save yarn remove jquery
npm update jquery --save yarn upgrade
   
npm init yarn init
npm link  yarn link
npm outdated yarn outdated
npm publish yarn publish
npm run yarn run
npm cache clean yarn cache clien
npm login yarn login
npm test yarn test
npm install --production yarn --production
   
  yarn licenses ls
  yarn licenses generate-discaimer
  yarn why jquery
  yarn upgrade-interactive
   
npm xmas  
npm visnup  

 

반응형
Comments