• This project
    • Loading...
  • Sign in

황선혁 / weather_chatbot

%ea%b7%b8%eb%a6%bc1
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
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • weather_chatbot
  • server
  • index.js
  • Eric Whale's avatar
    Update file/folder structure · bd198052
    bd198052
    Eric Whale authored 2022-05-13 21:15:09 +0900
index.js 354 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
const express = require("express");
const app = express();

const PORT = 8000;

app.listen(PORT, () => {
  console.log(`App listening on port ${PORT}`);
});

app.get("/", (req, res) => {
  res.send("Hello World!");
});

app.get("/login", (req, res) => {
  res.send("Hello World!");
});

app.get("/signup", (req, res) => {
  res.send("Hello World!");
});