Lifesoft
Home
웹개발
처음 만드는 Node.js MySQL 회원관리 미니실습노트
www
List
<<
>>
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}`);
});
List
<<
>>