반응형
위 사이트에서 아래 코드를 가져올 수 있다.
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}/`);
});
node main.js 를 치면 서버가 running 되고
터미널 부분에 http://127.0.0.1:3000/ 을 클릭하면
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 |
댓글