프로그래밍/Node.js2 첫 번째 앱 만들기 첫 번째 웹 사이트 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://local.. 2021. 11. 25. Node.js 소개 웹사이트 웹사이트 URL : https://nodejs.org/ko/ Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org Node.js 란? Node.js 홈(About) URL : https://nodejs.org/ko/about/ Node.js 홈(가이드) URL : https://nodejs.org/ko/docs/guides/ 위키백과 URL : https://ko.wikipedia.org/wiki/Node.js Node.js 설치하기 Node.js 홈 페이지에 접속 -> LTS 버전 또는 최신 버전 다운로드 -> Node.js 설치 설치 확인 node -v 2021. 11. 25. 이전 1 다음