Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김한준
/
OSS-Term-Project
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
김한준
2019-05-31 19:56:49 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2a52448e52b8044c72189e92ecf2cd69bc4803b3
2a52448e
1 parent
02608f63
폴더별로 구분하고 정적문추가
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
app.js
app.js
View file @
2a52448
var
express
=
require
(
'express'
);
var
app
=
express
();
var
express
=
require
(
'express'
);
var
path
=
require
(
'path'
);
var
app
=
express
();
app
.
use
(
express
.
static
(
path
.
join
(
__dirname
,
'public'
)));
app
.
use
(
express
.
static
(
path
.
join
(
__dirname
,
'css'
)));
app
.
use
(
express
.
static
(
path
.
join
(
__dirname
,
'js'
)));
app
.
get
(
'/'
,
function
(
req
,
res
)
{
res
.
send
(
'로또 번호 생성 사이트 제작중입니다.'
);
app
.
listen
(
3000
,
function
(){
console
.
log
(
'Server On'
);
});
app
.
listen
(
3000
,
function
(){
console
.
log
(
'Server On!'
);
});
\ No newline at end of file
...
...
Please
register
or
login
to post a comment