app.js
1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const express = require('express');
const fs = require('fs');
const path = require('path');
const logger = require('morgan');
const app = express();
app.use(logger('combined'));
//디폴트 포트 값 : 8000
app.set('port', process.env.PORT || 8000);
//get하는 방법 : sendfile(파일 디렉토리 ) : 개선 필요 -> html 페이지 이동 및 data 전달 방법 찾기
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, './public/html/main.html'))
});
app.get('/plan', (req, res) => {
res.send('Server is working');
res.sendFile(path.join(__dirname, './public/html/main.html'));
//console.log(app.get('port'), '번 포트 대기 중');
});
app.get('/login', (req, res) => {
// console.log('로그인 페이지 오픈 시도됨.');
fs.readFile('./public/html/login.html', function (err, data) {
res.writeHead(200, { 'Content-Type': 'text/html' });
res.end(data);
})
})
app.get('/logout', function (req, res) {
res.send("Logout success");
});
app.post('/', function (req, res) {
res.send("POST request");
});
app.listen(app.get('port'), () => {
console.log(`Server is running at ${app.get('port')}`);
});
var contentsRouter = require('./contents/contents');
app.use('/contents', contentsRouter);