Showing
5 changed files
with
24 additions
and
7 deletions
1 | const express = require('express'); | 1 | const express = require('express'); |
2 | const fs = require('fs'); | 2 | const fs = require('fs'); |
3 | const path = require('path'); | 3 | const path = require('path'); |
4 | +const logger = require('morgan'); | ||
4 | const app = express(); | 5 | const app = express(); |
5 | 6 | ||
7 | + | ||
8 | +app.use(logger('combined')); | ||
9 | + | ||
6 | //디폴트 포트 값 : 8000 | 10 | //디폴트 포트 값 : 8000 |
7 | app.set('port', process.env.PORT || 8000); | 11 | app.set('port', process.env.PORT || 8000); |
8 | 12 | ||
13 | +//get하는 방법 : sendfile(파일 디렉토리 ) : 개선 필요 -> html 페이지 이동 및 data 전달 방법 찾기 | ||
9 | app.get('/', (req, res) => { | 14 | app.get('/', (req, res) => { |
10 | - //res.send('Server is working'); | 15 | + res.sendFile(path.join(__dirname, './public/html/main.html')) |
16 | +}); | ||
17 | +app.get('/plan', (req, res) => { | ||
18 | + res.send('Server is working'); | ||
11 | res.sendFile(path.join(__dirname, './public/html/main.html')); | 19 | res.sendFile(path.join(__dirname, './public/html/main.html')); |
12 | - console.log(app.get('port'), '번 포트 대기 중'); | 20 | + //console.log(app.get('port'), '번 포트 대기 중'); |
13 | }); | 21 | }); |
14 | app.get('/login', (req, res) => { | 22 | app.get('/login', (req, res) => { |
15 | - console.log('로그인 페이지 오픈 시도됨.'); | 23 | + // console.log('로그인 페이지 오픈 시도됨.'); |
16 | fs.readFile('./public/html/login.html', function (err, data) { | 24 | fs.readFile('./public/html/login.html', function (err, data) { |
17 | res.writeHead(200, { 'Content-Type': 'text/html' }); | 25 | res.writeHead(200, { 'Content-Type': 'text/html' }); |
18 | res.end(data); | 26 | res.end(data); | ... | ... |
This diff is collapsed. Click to expand it.
1 | <!DOCTYPE html> | 1 | <!DOCTYPE html> |
2 | -<html lang="en"> | 2 | +<html lang="ko"> |
3 | 3 | ||
4 | <head> | 4 | <head> |
5 | <meta charset="UTF-8"> | 5 | <meta charset="UTF-8"> |
... | @@ -11,12 +11,20 @@ | ... | @@ -11,12 +11,20 @@ |
11 | <strong> Culture Gallery</strong> | 11 | <strong> Culture Gallery</strong> |
12 | 12 | ||
13 | <h1> | 13 | <h1> |
14 | - 수정 기록 | 수정 날짜 : 2020-12-02 | 14 | + 수정 기록 | 수정 날짜 : 2020-12-03 |
15 | </h1> | 15 | </h1> |
16 | <div> | 16 | <div> |
17 | <h2> | 17 | <h2> |
18 | + 12/03 | ||
19 | + nodejs 서버로 javascript 파일 및 webpage 이동 방법 구현하기 | ||
20 | + router, content, public 으로 프로젝트 전체 구조 재분할 | ||
21 | + main page design 구현 -> info, login 등으로 link 필요 | ||
22 | + 카카오 API 응용 -> 위치 정보 및 공연 컨텐츠 받아서 지도에 마킹, 카카오톡으로 보내기 | ||
23 | + 12/02 | ||
18 | 웹사이트 node에 연결 -> 디자인 구상 필요 | 24 | 웹사이트 node에 연결 -> 디자인 구상 필요 |
19 | api database 구축 -> 카테고리별로 가공해서 받아오기 | 25 | api database 구축 -> 카테고리별로 가공해서 받아오기 |
26 | + | ||
27 | + | ||
20 | </h2> | 28 | </h2> |
21 | </div> | 29 | </div> |
22 | <div> | 30 | <div> | ... | ... |
-
Please register or login to post a comment