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-30 22:26:37 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
73f89d58a47aa803fe1d32091ee66e9d423da867
73f89d58
0 parents
서버실행파일
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
app.js
app.js
0 → 100644
View file @
73f89d5
var
express
=
require
(
'express'
);
var
app
=
express
();
app
.
get
(
'/'
,
function
(
req
,
res
)
{
res
.
send
(
'로또 번호 생성 사이트 제작중입니다.'
);
});
app
.
listen
(
3000
,
function
(){
console
.
log
(
'Server On!'
);
});
\ No newline at end of file
Please
register
or
login
to post a comment