Skip to content

Instantly share code, notes, and snippets.

@nazieb
Last active February 2, 2019 16:34
Show Gist options
  • Save nazieb/476eea667ff3591d7d50c7288b0cee71 to your computer and use it in GitHub Desktop.
Save nazieb/476eea667ff3591d7d50c7288b0cee71 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",
});
});
module.exports = app;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment