node.js 설치1 [Node.js] Node.js 시작하기 Node 설치 2022.07.20 - [setting] - [MacOS - M1] nvm으로 node.js 와 npm 설치, 버전 업데이트 Node 설치 후 vscode에서 실행해보기 1. 사용할 프로젝트 폴더에서 src 폴더 안에 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, (.. 2022. 10. 26. 이전 1 다음