Showing
1 changed file
with
20 additions
and
0 deletions
app.js
0 → 100644
1 | +const express = require('express'); | ||
2 | +const path = require('path'); | ||
3 | +const app = express(); | ||
4 | + | ||
5 | +//디폴트 포트 값 : 8000 | ||
6 | +app.set('port', process.env.PORT || 8000); | ||
7 | + | ||
8 | +app.get('/', (req, res) => { | ||
9 | + //res.send('Server is working'); | ||
10 | + res.sendFile(path.join(__dirname, '/main.html')); | ||
11 | + console.log(app.get('port'), '번 포트 대기 중'); | ||
12 | +}); | ||
13 | + | ||
14 | +app.get('/login', (req, res) => { | ||
15 | + res.send('로그인 페이지 : 로그인 방법 구상 하고 html 및 사이트 가져오기'); | ||
16 | + console.log('로그인 페이지 오픈 시도됨.'); | ||
17 | +}); | ||
18 | +app.listen(app.get('port'), () => { | ||
19 | + console.log(`Server is running at ${app.get('port')}`); | ||
20 | +}); | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment