목록Express (1)
Silver Library (Archived)
Node.js 로 영상 사이트 구현화 하기 - EP1
node index.js 로 번거롭게 입력해서 서버 구동 하는 것보다도 단순한 방법이 있다. npm start 명령어인데, 이를 위해서는 index.js 파일에다가 이를 반영 입력해 줄 필요가 있다. 예를 들어, const express = require("express"); const app = express(); 가 있으면, const PORT = 4000; function handleListening() { console.log(`Listening on: http://localhost:4000`); } app.listen(4000, handleListening); 로 입력 후, 다시 서버를 구동해보면 터미널에서 메세지가 바뀐것을 볼 수 있다. npm start 명령어 만으로도 node index.j..
Personal DB/Unclassified record
2021. 2. 19. 00:30