[node] 익스프레스 없이 http 요청하기 HTTP 요청에서 데이터를 받는 방법const http = require("http"); // 모듈 불러오기//서버 생성const server = http.createServer((req, res) => { console.log("INCOMING REQUEST"); console.log(req.method, req.url); // post 요청 처리 if (req.method === "POST") { let body = ""; // 데이터가 모두 수신된 후 처리 ++ body에 추가. req.on("end", () => { // 클라이언트로부터 모든 data를 수신하면 실행한다. const userName = body.split("=")[1]; .. IT/node.js 8개월 전
[자바스크립트] CJS와 ESM(MJS) 차이 1. CommonJS, ES Modules는 무엇일까?우리는 JS 모듈을 내보내거나 가져올 때 2가지 방식을 사용한다.첫번째 방법은 module.exports로 모듈을 내보내고 require()로 접근하는 CJS(CommonJS),두번째 방법은 export로 모듈을 내보내고 import로 접근하는 ESM(ES Modules)이 있다.1. CJS 방식NodeJS에서 지원하는 모듈 방식으로, 초기 Node버전부터 사용되었다.별도의 설정이 없다면 CJS가 기본값이다.외부 모듈에 접근할 때는 require()을 사용한다.// CJS 방법module.exports = { ... } // 모듈 내보낼 때const utils = require('utils'); // 모듈 가져올 때1-2. CJS의 특징r.. IT/자바스크립트 9개월 전
[node] 자바스크립트로 라우터 만들기 URL방식 과 WHATWG 방식url 방식hrefprotocolauthhostpathhashhostnameportpathnamesearchqueryhttps:user : pass@sub.example.com:8000/p/a/t/h?query=string#hashwhatwgurl방식보다 진일보 된 방식이다.WHATWG URL의 origin 속성에는 protocol 및 host 가 포함 되지만 username 또는 password 는 포함 되지 않는다 .hreforigin originpathnamesearchhashprotocolusernamepasswordhosthostnameporthttps:user: pass@sub.example.com:8000/p/a/t/h?query=string#hash cons.. IT/node.js 9개월 전
node.js 다운그레이드 이미 최신버전으로 node를 설치한 경우 기준으로 참고 1. 현재 노드 버전 보기 node -v 2. 사용 가능한 노드 버전 확인 $ brew search node 3. 현재 버전과의 연결 해제 $ brew unlink node 4. Node 16버전 설치 예시 $ brew install node@16 5. 설치된 버전을 연결 $ brew link node@16 필요에 따라 ~/.zshrc에 추가해주어야할 수도 있음 echo 'export PATH="/opt/homebrew/opt/node@16/bin:$PATH"' IT/npm 3년 전