www.js 148 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 "use strict"; const app = require("../app"); const PORT = process.env.PORT || 3000; app.listen(PORT, () => { console.log("서버 가동"); });