Toggle navigation
Toggle navigation
This project
Loading...
Sign in
고혜연
/
DessertChatbot
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
윤성아
2021-06-10 10:25:36 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
aedfd5235a73787dfa121f49184f8fafeb323e17
aedfd523
1 parent
023fd743
Move app.js to https/app.js
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
9 deletions
app.js
app.js
deleted
100644 → 0
View file @
023fd74
const
express
=
require
(
'express'
);
const
app
=
express
();
const
port
=
3000
;
app
.
get
(
'/'
,
(
req
,
res
)
=>
{
res
.
send
(
'hello world!'
);
});
app
.
listen
(
port
,
()
=>
console
.
log
(
`Server is running on port
${
port
}
`
));
\ No newline at end of file
Please
register
or
login
to post a comment