Skip to content

Instantly share code, notes, and snippets.

@nazieb
Created February 2, 2019 15:18
Show Gist options
  • Save nazieb/ae4db5b6d197f7fae670d9fd9e7201da to your computer and use it in GitHub Desktop.
Save nazieb/ae4db5b6d197f7fae670d9fd9e7201da to your computer and use it in GitHub Desktop.
const express = require("express");
const app = express();
app.get("/hello", (req, res) => {
res.json({
message: "Hello, World",
});
});
app.post("/ping", (req, res) => {
res.json({
message: "Pong",
});
});
app.listen(process.env.PORT, () => {
console.log("App is running...");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment