Lifesoft

www

파일 경로: bin/www
코드 1
import app from '../app.js';
import http from 'http';
const server = http.createServer(app);

const PORT = process.env.PORT || 3000;
server.listen(PORT, () => {
  console.log(`Server listening on http://localhost:${PORT}`);
});