UNPKG

create-node-template

Version:

Create node.js or express boilerplate with one command

10 lines (7 loc) 271 B
import { Application } from 'express'; import { expressLoader } from './express'; export const initLoaders = async (app: Application) => { await expressLoader(app); console.log('Express Intialized'); // ... Add more loaders, e.g. agenda, Redis, Mongoose, etc. };