Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이유제
/
CultureGallery
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
YujeLee
2020-12-04 06:58:41 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
b779c4db0b747207786b5aceec628142133b62e5
b779c4db
2 parents
9066e33e
fce0e2c2
html 커밋 오류 수정
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
7 deletions
app.js
package-lock.json
package.json
public/html/login.html
public/html/main.html
app.js
View file @
b779c4d
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.send('Server is working');
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'
),
'번 포트 대기 중'
);
//
console.log(app.get('port'), '번 포트 대기 중');
});
app
.
get
(
'/login'
,
(
req
,
res
)
=>
{
console
.
log
(
'로그인 페이지 오픈 시도됨.'
);
//
console.log('로그인 페이지 오픈 시도됨.');
fs
.
readFile
(
'./public/html/login.html'
,
function
(
err
,
data
)
{
res
.
writeHead
(
200
,
{
'Content-Type'
:
'text/html'
});
res
.
end
(
data
);
...
...
package-lock.json
View file @
b779c4d
This diff is collapsed. Click to expand it.
package.json
View file @
b779c4d
...
...
@@ -14,6 +14,7 @@
"author"
:
"Hyoseob Song"
,
"license"
:
"MIT"
,
"dependencies"
:
{
"express"
:
"^4.17.1"
"express"
:
"^4.17.1"
,
"morgan"
:
"^1.10.0"
}
}
...
...
public/html/login.html
View file @
b779c4d
<!DOCTYPE html>
<html
lang=
"
en
"
>
<html
lang=
"
ko
"
>
<head>
<meta
charset=
"UTF-8"
>
...
...
public/html/main.html
View file @
b779c4d
<!DOCTYPE html>
<html
lang=
"
en
"
>
<html
lang=
"
ko
"
>
<head>
<meta
charset=
"UTF-8"
>
...
...
@@ -11,12 +11,20 @@
<strong>
Culture Gallery
</strong>
<h1>
수정 기록 | 수정 날짜 : 2020-12-0
2
수정 기록 | 수정 날짜 : 2020-12-0
3
</h1>
<div>
<h2>
12/03
nodejs 서버로 javascript 파일 및 webpage 이동 방법 구현하기
router, content, public 으로 프로젝트 전체 구조 재분할
main page design 구현 -> info, login 등으로 link 필요
카카오 API 응용 -> 위치 정보 및 공연 컨텐츠 받아서 지도에 마킹, 카카오톡으로 보내기
12/02
웹사이트 node에 연결 -> 디자인 구상 필요
api database 구축 -> 카테고리별로 가공해서 받아오기
</h2>
</div>
<div>
...
...
Please
register
or
login
to post a comment