UNPKG

webappengine

Version:

A web application platform that can host multiple web apps running with Node.js.

14 lines (10 loc) 276 B
var settings = require('./config/settings'); module.exports = function(options) { var app; if (settings.multihost.enable) { app = require('./app.multihost')(options); } else { app = require('./app.standalone')(options); } return app; };