간단한 웹 애플리케이션 만들기졸업작품_preparing..../node_js2019. 1. 28. 21:20
Table of Contents
반응형
사전 작업 : node js 설치
다음 링크를 들어가면 다운받을 수 있다 .
--> https://nodejs.org/en/download/
작업은 atom을 사용해서 해보겠다.
코드를 보면서 확인해 보겠다.
webser.js
const http = require('http');
const hostname = '127.0.0.1';
const port = 1337;
http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World\n');
}).listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});
cmd 에서 실행을 시켜보면 다음과 같은 화면이 나오는 것을 알 수 있다.
반응형
'졸업작품_preparing.... > node_js' 카테고리의 다른 글
Expressjs 설치 및 간단한 웹 애플리케이션 만들기 (0) | 2019.02.01 |
---|---|
동기 Vs 비동기 (0) | 2019.01.30 |
npm 모듈 사용법 (0) | 2019.01.30 |
NPM 간단한 개념 + 독립적인 앱 설치 (0) | 2019.01.30 |
모듈_기초 (0) | 2019.01.29 |
@IT grow. :: IT grow.
#IT #먹방 #전자기기 #일상
#개발 #일상