UNPKG

create-benm-app

Version:

Boilerplate for REST API with Node.js, ExpressJS, and MongoDB

12 lines (8 loc) 262 B
var express = require("express"); var router = express.Router(); /* GET home page. */ router.get("/", function(req, res) { res.status(200).render("index", { title: "Express" }); }); /* If you want you add health check add here... */ module.exports = router;