2021-07-07
yarn run vs npm run
yarn run [script] [<args>]
scripts
에 등록된 명령어 실행node_modules/.bin/
에 위치한 실행 가능 파일(executable) 실행run
은 생략 가능하다.
npm run-script <command>
npm run <command>
로 aliasscripts
에 등록된 명령어 실행
npm exec (npx)
node_modules/.bin
에 위치한 실행 가능 파일(executable) 실행- remote npm package 실행
nuxt 프로젝트 생성
yarn create nuxt-app
yarn create nuxt-app
create-nuxt-app
을 사용하면 cli를 통해 프로젝트에 관한 설정에 대한 질의를 한다 .