Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fabianogoes/816190f0d4401df1d3fbddbea4947417 to your computer and use it in GitHub Desktop.
Save fabianogoes/816190f0d4401df1d3fbddbea4947417 to your computer and use it in GitHub Desktop.
REST CRUD com NodeJS - Modularizando - index.js
var express = require('express');
var consign = require('consign');
var app = express();

consign()
    .include('./config/middlewares.js')
    .then('./config/boot.js')
    .then('models')
    .then('controllers')
    .into(app);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment