Toggle navigation
Toggle navigation
This project
Loading...
Sign in
황선혁
/
weather_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
Eric Whale
2022-05-09 21:00:33 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
06b1d61afbb8fe7926a7e305bdba77add24187f6
06b1d61a
1 parent
40b3fd4a
Edit readme and Add basic express syntax
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
README.md
index.js
README.md
View file @
06b1d61
1
# ☔️ Weather Chatbot
1
# ☔️ Weather Chatbot
2
+
3
+
Very Simple weather chatbot web-app that show weather information based on longitude and altitude.
4
+
The main goal of this project is not to make something useful but to learn as much as possible.
5
+
6
+
## Tools & Languages
...
...
index.js
View file @
06b1d61
1
+
const
express
=
require
(
"express"
);
2
+
const
app
=
express
();
3
+
4
+
app
.
get
(
"/"
,
(
req
,
res
)
=>
{
5
+
res
.
send
(
"Hello World!"
);
6
+
});
7
+
8
+
const
PORT
=
8000
;
9
+
10
+
app
.
listen
(
PORT
,
()
=>
{
11
+
console
.
log
(
`App listening on port
${
PORT
}
`
);
12
+
});
...
...
Please
register
or
login
to post a comment