본문 바로가기
프로그래밍/Node.js

첫 번째 앱 만들기

by 안드레날린 2021. 11. 25.

첫 번째 웹 사이트

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

 

app.js 실행하기

node app.js

 

웹 사이트 접속하기

URL : http://localhost:3000

 

'프로그래밍 > Node.js' 카테고리의 다른 글

Node.js 소개  (0) 2021.11.25