(Nodejs) 설치 및 구동
NodeJS 설치
- 다운로드 주소
- 설치 후 터미널에서 node –version 명령어를 통해 확인 할 수 있다
NodeJS 기본 구동
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const http = require('http');
const hostname = '127.0.0.1';
const port = 3000;
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World');
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});
- nodejs 사이트에 기재되어있는 기본 구동 소스를 통해 간단한 .js파일을 생성한다.
- node [파일명]을 통해 node.js 파일을 구동시킨다.
- 웹 브라우저를 통해 접속한다 (ex: 127.0.0.1:3000)
This post is licensed under
CC BY 4.0
by the author.