nodejs서버실행1 (Node.js) node.js 서버구축하기/node.js 서버 만들고 실행하기 node.js 서버구축 및 실행하기 * Node를 설치한 후 실행하셔야 됩니다. * Node.js express로 서버 실행법을 알고싶다면 포스팅 하단 링크를 참고해주세요 :) 파일명: server.js const http = require("http"); const app = http.createServer((request, response) => { const _url = request.url; const fullUrl = new URL("http://localhost:3000" + _url); const pathName = fullUrl.pathname; if (pathName === "/") { response.writeHead(200, { "Content-Type": "text/html;char.. 2021. 9. 6. 이전 1 다음