안녕하세요 :) 현업 개발자의 블로그 입니다. 질문 환영해요.

궁금한 소프트웨어 기술을 말씀 해주시면, 성심 성의껏 알려드립니다.

728x90

분류 전체보기 124

node js 개발환경 설치 순서

1. 개발환경 설치 - visual studio code 설치 - git 설치 (구글 -> git download) , https://git-scm.com/downloads - nodejs 설치 , https://nodejs.org/ko/download/ 2.폴더 생성 후 http서버 작성 및 실행 const http = require("http"); const app = http.createServer((req, res) => { res.writeHead(200 , { "Content-Type" : "text/html; charset=utf-8"}); if(req.url === '/'){ res.end("이거는 root"); }else if(req.url === '/login'){ res.end("이거..

728x90