CodeStates/└ Node.js6 npm start error This is probably not a problem with npm. There is likely additional logging output above. package-lock.json file and node_modules delete cache clean npm cache clean --force npm 설치 npm install 2020. 8. 28. express express 프레임워크 설치 npm install express --save yam을 이용한 설치 yarn add express 서버 시작 const express = require('express') const app = express(); const PORT = process.env.NODE_ENV === 'production' ? 3001: 3002 app.listen(PORT,()=>{ console.log(`server listen on ${PORT}`) }) NODE_ENV === 'production' NODE_ENV환경변수는 어플리케이션이 동작하는 환경을 나타냄 일반적으로 development와 environment가 있음 성능을 올리는데 가장 간단한 것은 NODE_ENV를 product.. 2020. 8. 19. node debug inspect 활성화 node --inspect [파일명] 크롬 창 노드 디버깅 활성화 확인 크롬 창 콘솔 확인 inspect-brk 활성화 node --inspect-brk [파일명] 크롬 창 노드 디버깅 활성화 확인 크롬 창 소스 확인 Reference 노드 디버깅 2020. 8. 18. post request HTTP 서버 생성 const http = require ( 'http');// http 모듈 const Server = http.createServer ((req, res) => { // server 생성 res.end (console.log('hello world')); }); server.listen (5000);// 5000 port Data Parsing if (req.method === 'POST') { let body = ''; req.on('data', chunk => {// chunk : 요청Data body += chunk;// buffer 역할 }); req.on('end', () => { console.log( parse(body) ); res.end('ok'); }); } 2020. 8. 16. 이전 1 2 다음