Express 시작하기

이태규·2021년 12월 27일
0

express

목록 보기
1/28

-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 실행하기

  1. CMD> node ./bin/www (소스코드 변경 적용안됨)
    크롬에서 localhost:3000

  2. CMD> npm i nodemon -g
    CMD> nodemon --inspect ./bin/www (소스코드 변경 적용됨)

profile
한 걸음씩 나아가자

0개의 댓글