Toggle navigation
Toggle navigation
This project
Loading...
Sign in
전세계
/
FakerQuiz
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
전세계
2020-05-14 00:51:23 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
42f35b5e8015e0ca07069c1027d5f525e34ad1be
42f35b5e
1 parent
4a76fdc2
테스트: Express 테스트
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
.gitignore.txt → .gitignore
app.js
.gitignore
.txt
→
.gitignore
View file @
42f35b5
File moved
app.js
View file @
42f35b5
const
express
=
require
(
'express'
);
const
app
=
express
();
const
port
=
80
;
app
.
get
(
'/'
,
(
req
,
res
)
=>
{
res
.
send
(
'Express Test'
);
});
app
.
listen
(
port
,
()
=>
console
.
log
(
`app listening at http://localhost:
${
port
}
`
));
\ No newline at end of file
...
...
Please
register
or
login
to post a comment