[node.js] 초기 세팅
·
Server/node.js
node -v // 설치된 노드 버전 확인npm -v // 노드 패키지 매니저 버전 확인 (Node.js 설치 시 함께 설치됨)npm initnpm install -g yarnyarn -vnpm install express --save // npm 사용 시yarn add express // yarn 사용 시node index.jsnpm install --save-dev @babel/core @babel/cli @babel/preset-env @babel/nodeyarn add @babel/core @babel/cli @babel/preset-env @babel/node --dev// scripts 설정 안해도 아래 명령어로 실행이 가능합니다!np..