본문 바로가기
Javascript&Typescript/Node.js

[Node.js] Node.js 시작하기

by clolee 2022. 10. 26.

Node 설치

 

2022.07.20 - [setting] - [MacOS - M1] nvm으로 node.js 와 npm 설치, 버전 업데이트

 

Node 설치 후 vscode에서 실행해보기

1. 사용할 프로젝트 폴더에서 src 폴더 안에 app.js 파일 생성.

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}/`);
});

 

2. node src/app.js 를 통해서 웹 서버 실행

 

 

3. http://localhost:3000   방문하여 Hello World 메세지 확인

 

 

 

참고 :

https://nodejs.org/en/docs/guides/getting-started-guide/

https://nodejs.org/ko/docs/guides/getting-started-guide/

 

댓글