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/
'Javascript&Typescript > Node.js' 카테고리의 다른 글
[Node.js] module exports / require (0) | 2024.01.06 |
---|---|
[Node.js] 프로젝트의 Directory structure (1) | 2022.11.07 |
[Node.js] 프로젝트에 .gitignore 추가하기 (0) | 2022.11.04 |
[Node.js] express-generator로 프로젝트 생성하기 (0) | 2022.11.04 |
[Node.js] Error: error:0308010C:digital envelope routines::unsupported (0) | 2022.10.27 |
댓글