본문 바로가기
공부/nodejs

main.js 실행

by 매일삼겹살 2021. 5. 2.
반응형

 

 

 

About | Node.js

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org

위 사이트에서 아래 코드를 가져올 수 있다.

 

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

terminal은 상단 메뉴에서 Terminal → New Terminal

node main.js 를 치면 서버가 running 되고

터미널 부분에 http://127.0.0.1:3000/ 을 클릭하면 

Hello World가 출력된 사이트를 볼 수 있다.

 

 

728x90

'공부 > nodejs' 카테고리의 다른 글

nodemon  (0) 2021.06.12
클라이언트로부터 데이터 받기 postman  (0) 2021.06.12
nodejs model과 schema  (0) 2021.06.11
express 다운로드 명령어  (0) 2021.06.10
npm init pakage.json 생성  (0) 2021.06.10

댓글