반응형
졸업작품_preparing..../node_js2019. 1. 28. 21:20간단한 웹 애플리케이션 만들기

사전 작업 : node js 설치 다음 링크를 들어가면 다운받을 수 있다 . --> https://nodejs.org/en/download/ 작업은 atom을 사용해서 해보겠다. 코드를 보면서 확인해 보겠다. webser.jsconst 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://${hostnam..

반응형
image