-g와 --save node_modules의 차이
-g는 프로그램을 설치하는 것이고
--save node_modules는 node_modules에 모듈을 다운받는 것이다
vue를 설치할 때
CMD> npm i @vue/cli -g
CMD> vue --version
CMD> vue create 20211111_vue
CMD> npm run serve
크롬에서 locahost:8080
express를 설치할 때
CMD> npm i express-generator -g
CMD> express --version
현재버전 4.16.1
CMD> express -e exp_20211227
-exp_20211227의 이름을 가진 익스프레스 폴더 만들기
CMD> cd exp_20211227
CMD> npm install
-express node_modules 설치하기
express 실행하기
CMD> node ./bin/www (소스코드 변경 적용안됨)
크롬에서 localhost:3000
CMD> npm i nodemon -g
CMD> nodemon --inspect ./bin/www (소스코드 변경 적용됨)