UNPKG

ready-to-go-node-template

Version:

A node boilerplate template with built-in support for socket and MongoDB using Mongoose.

13 lines (10 loc) 213 B
import BaseConfig from "./base-config"; /** * router config */ export default class RouterConfig extends BaseConfig { constructor() { super(); this.router = this.express.Router(); } }