Eric Whale

Edit readme and Add basic express syntax

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
......
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 +});
......