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
이준용
2020-06-15 00:24:36 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
842afd70a924cdfc308a5754e634cff36a8b8cf9
842afd70
1 parent
94a893e1
1차수정
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 @
842afd7
var
express
=
require
(
'express'
);
var
app
=
express
();
var
server
=
app
.
listen
(
3000
,
function
(){
console
.
log
(
"Express server has started on port 3000"
)
})
app
.
get
(
'/'
,
function
(
req
,
res
){
res
.
send
(
"hello"
);
// res.sendFile('index.html', { root: __dirname });
});
\ No newline at end of file
Please
register
or
login
to post a comment