Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김승찬
/
LINEBOT
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
1
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김수민
2019-11-16 19:07:13 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
565288effd142f0659b5428d95f4b97601c259c4
565288ef
2 parents
1818e388
04620944
Merge branch 'master' of
ssh://khuhub.khu.ac.kr:12959/2018102174/LINEBOT
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
app_test.js
app_test.js
0 → 100644
View file @
565288e
1
+
var
express
=
require
(
'express'
);
2
+
var
app
=
express
();
3
+
4
+
app
.
get
(
'/'
,
(
req
,
res
)
=>
{
5
+
return
res
.
send
(
"HELLO, TEST!"
)
6
+
});
7
+
8
+
app
.
listen
(
3000
,
function
()
{
9
+
console
.
log
(
'Linebot listening on port 3000!'
);
10
+
});
Please
register
or
login
to post a comment