Node.js2 (Node.js) node.js express로 서버구축하기 (Node.js) node.js express로 서버구축하기 * Node를 설치한 후 실행하셔야 됩니다. 1. 프로젝트파일 열기 프로젝트 폴더를 visual studio Code 혹은 다른 코드편집기에서 열어줍니다. 2. 터미널창에서 아래 명령어를 입력해 줍니다.(사진 참고하세요~) > npm init > npm install express --save *npm init을 하고 계속 엔터를 쳐주시면 됩니다!! (마지막 "Is this OK?"까지 엔터를 치고 폴더쪽 새로고침을 해주면, package.json파일이 생겨남) 3. 서버구축 코드 > 파일 생성 후 코드 입력. 파일명: server.js const express = require("express"); const app = express(); /.. 2021. 9. 7. (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 다음