-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
81 lines (62 loc) · 2.21 KB
/
app.js
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import express from 'express';
import cors from 'cors';
import path from 'path';
import {fileURLToPath} from 'url';
import {PORT, CORS_OPTIONS} from './public/config/config.js';
const app = express();
const port = PORT;
//__dirname 대신 __filename 사용
//★ 이유묻기
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
//cors 설정
app.use(cors(CORS_OPTIONS));
//json 파싱 미들웨어
app.use(express.json());
//정적 파일 제공
app.use(express.static(path.join(__dirname,'/public')));
//이용약관 페이지
app.get('/terms', (req, res) => {
res.sendFile(path.join(__dirname, './public/terms', 'termsOfService.html'));
});
//개인정보 페이지
app.get('/privacy', (req, res) => {
res.sendFile(path.join(__dirname, './public/terms', 'privacyPolicy.html'));
});
//로그인 페이지
app.get('/auth/login', (req, res) => {
res.sendFile(path.join(__dirname, './public/HTML', 'Login.html'));
});
//회원가입 페이지
app.get('/auth/signup', (req, res) => {
res.sendFile(path.join(__dirname, './public/HTML', 'SignUp.html'));
});
//게시글 목록 조회
app.get('/posts', (req, res) => {
res.sendFile(path.join(__dirname, './public/HTML', 'DashBoard.html'));
});
//게시글 작성
app.get('/posts/write', (req, res) => {
res.sendFile(path.join(__dirname, './public/HTML', 'AddPost.html'));
});
//게시글 상세 조회
app.get('/posts/:post_id', (req, res) => {
res.sendFile(path.join(__dirname, './public/HTML', 'ViewPost.html'));
});
//게시글 수정 페이지 로드
app.get('/posts/:post_id/edit', (req, res) => {
res.sendFile(path.join(__dirname, './public/HTML', 'EditPost.html'));
});
//회원정보 수정(닉네임,사진) : 페이지 로드
app.get('/users/me', (req,res) => {
res.sendFile(path.join(__dirname, './public/HTML', 'EditProfile.html'));
});
//회원정보 수정(패스워드) :페이지 로드
app.get('/users/me/password', (req,res) => {
res.sendFile(path.join(__dirname, './public/HTML', 'EditPassword.html'));
});
//서버 실행
app.listen(port, function () {
console.log(`--Front Server Start-- ${new Date().toISOString()} - Port: ${port}`);
console.log(` http://localhost:${port}/auth/login`);
});