init.js 339 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import app from "./app"; // app.js에서 export default app했기 때문에 불러올 수 있다. const PORT = 80; const handleListening = () => { console.log(`-> Listening on: http://localhost:${PORT}`); //call-back함수. //PORT를 listen하기 시작할 때 함수를 호출해준다. } app.listen(PORT, handleListening);