UNPKG

@unclepaul/allcountjs

Version:

The open source framework for rapid business application development with Node.js

13 lines (12 loc) 365 B
var domain = require('domain'); var _ = require('lodash'); module.exports = function (app, templateVarService, appUtil) { return { setup: function () { app.use(function (req, res) { templateVarService.setupLocals(req, res); res.status(404).render('not-found'); }); } }; };