Skip to content

Instantly share code, notes, and snippets.

@TaylorAckley
Last active October 8, 2018 00:38
Show Gist options
  • Save TaylorAckley/f95004d3d6066996ed79b095e9adad64 to your computer and use it in GitHub Desktop.
Save TaylorAckley/f95004d3d6066996ed79b095e9adad64 to your computer and use it in GitHub Desktop.
MVC - Index.js
const express = require('express');
// other libs and middleware
const app = express();
// pass the instance of our app to the routes.
require('./routes/routes.index.js')(app);
app.listen(5050);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment