Node.js를 이용해 웹애플리케이션 만들기 - Egoing Lee / 생활코딩 / nodejs v5.7.1
https://www.inflearn.com/course/nodejs-%EA%B0%95%EC%A2%8C-%EC%83%9D%ED%99%9C%EC%BD%94%EB%94%A9
실습 환경
Windows 10 Home
Node.js v12.16.1 LTS
Visual Studio Code
실행
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}/`);
});
'Javascript > nodejs' 카테고리의 다른 글
[Node.js: Express: URL을 이용한 정보의 전달] query string / query 객체 / Semantic URL (0) | 2020.03.20 |
---|---|
[Node.js: Express Template Engine] 템플릿 엔진 사용법, Jade 문법 (0) | 2020.03.20 |
[Node.js: Express] Express를 이용한 간단한 웹앱 만들기 / 정적 파일 서비스 방법 / 동적으로 웹페이지를 표현하는 방법 (0) | 2020.03.20 |
[Node.js: 비동기(Asynchronous)] 비동기와 동기 처리 방식 (0) | 2020.03.20 |
[Node.js: 모듈(Module)] NPM / 모듈 설치 (0) | 2020.03.20 |