Skip to content

Instantly share code, notes, and snippets.

@topspinppy
Last active March 18, 2019 15:43
Show Gist options
  • Save topspinppy/9ca27479ebb4b792e08fafbd1038f823 to your computer and use it in GitHub Desktop.
Save topspinppy/9ca27479ebb4b792e08fafbd1038f823 to your computer and use it in GitHub Desktop.
var express = require("express");
var app = express();
var port = 4000;
app.get("/", (req, res) => {
res.send({
status: "200"
});
});
app.listen(port, () => {
console.log(`server listening on port ${port}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment