Toggle navigation
Toggle navigation
This project
Loading...
Sign in
육현진
/
chatbot
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-11-20 18:50:21 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b1fb02bd13ee16b4eb95895d616f45567b2a3f31
b1fb02bd
1 parent
bbc7e6ce
modify app
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
app.js
app.js
View file @
b1fb02b
var
express
=
require
(
'express'
);
var
app
=
express
();
app
.
post
(
'/'
,
function
(
req
,
res
)
{
app
.
get
(
'/'
,
function
(
req
,
res
)
{
res
.
send
(
'Hello World'
+
req
);
})
app
.
get
(
'/test'
,
function
(
req
,
res
)
{
...
...
Please
register
or
login
to post a comment