Toggle navigation
Toggle navigation
This project
Loading...
Sign in
장승환
/
WhyNotWorkMyVs
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
jangseonghwan
2020-12-12 17:37:24 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
affd17801277be87c61cd751e8d2f5334951a68e
affd1780
1 parent
47e4d4b3
s
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
testing.js
testing.js
0 → 100644
View file @
affd178
var
express
=
require
(
'express'
);
var
app
=
express
();
app
.
get
(
'/'
,
function
(
req
,
res
)
{
res
.
send
(
'Hello World'
);
})
var
server
=
app
.
listen
(
23023
,
function
()
{
var
host
=
server
.
address
().
address
var
port
=
server
.
address
().
port
console
.
log
(
"Example app listening at http://%s:%s"
,
host
,
port
)
})
\ No newline at end of file
Please
register
or
login
to post a comment