[NodeJs] 기본적인 환경설정
기본적인 환경설정 및 파일실행
NODEJS 설치
윈도우에서 초기설치및 업데이트를 하기위해서는 아래 다운로드 사이트에서 LTS > Windows Installer(msidyd) 를 다운 받는다.
Current(최신버젼) 도 있지만 안정성을 위해서는 LTS 버젼을 추천한다.
설치가 완료되면 커멘드 창을 열고 버젼을 확인한다.
> node -V
NPM 설치
nodeJs가 설치완료되면 npm 도 업데이트(인스톨)한다.
npm install -g npm@latest // 가장 최근 버젼
npm install -g [email protected] // 특정 버젼
Project 생성
초기화
npm init
js 파일생성
myfirst.js
const http = require('http'); // load http
const hostname = '127.0.0.1';
const port = 3000;
http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(port, hostname);
console.log('Server running at http://' + hostname + ':' + port);
js 파일실행
node ./myfirst.js
> Server running at http://127.0.0.1:3000