웹서버1 node.js 웹서버 설치 1) express 라는 라이브러리를 써서 서버를 만들거임 - new Terminal > npm init > - 어떤 라이브러리 설치했는지 기록하면 좋을듯? package.json 에 기록함 - npm install express - node_modules 가 생성된다 (라이브러리 관련 폴더) - 안되면 npm 대신 yarn 을 써보자 2) server.js 설정 기본... const express = require('express'); const app = express(); app.listen(8080, function(){ console.log('listening on 8080'); }); node server.js > 웹서버 ON 컨트롤+C > 웹서버 OFF 위 작업을 자동화하는.. 2021. 6. 21. 이전 1 다음