Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
students
git example
Commits
9a130531
Commit
9a130531
authored
Jan 13, 2023
by
Park Sungwoo
Browse files
123
parent
27c2fbba
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/app.js
0 → 100644
View file @
9a130531
import
express
from
"
express
"
;
const
port
=
3000
;
const
app
=
express
();
app
.
get
(
"
/
"
,
(
req
,
res
)
=>
{
console
.
log
(
"
root path get method called.
"
)
res
.
send
(
"
!23
"
)
})
app
.
listen
(
port
,
()
=>
{
console
.
log
(
`server is runnug at
${
port
}
port.`
)
})
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment