README
appup 
CLI to launch apps that use an express main server and an optional restif api server.
Servers are super stable with the help of domains and the cluster module.
This means in practice that when a request causes an unhandled error a 500 response is sent, the server shut down
gracefully and a new one spun up.
Two servers are spun up originally for each port, so that while one is restarted, the other one keeps servicing incoming requests.
Installation
npm install appup
CLI
appup [options] file
Options:
--pages port to start pages server on
--watchdir directory to watch for client side JavaScript changes in order to automatically refresh
--dedupe if set it will [dynamically dedupe] (https://github.com/thlorenz/dynamic-dedupe)
all modules as they are being required to work around the fact that symlinks break `npm dedupe`
--api port to start api server on
--apihost address at which api server is hosted [default: "localhost"]
--tunnel sets up local tunnel pointing to pages port and logs url to connect to from remote client
--config point to a config file to override routes, etc. for the pages and api server
--nocluster if set, single servers are launched instead of a cluster of them, which maybe preferred during development
API
-
appup(opts)
-
Creates browserify bundle and starts up pages server and/or api server according to the supplied options.
If no api port is given, the api server is not started up. If no pages port is given, the pages server is not started up. If neither port is given, an error is thrown.
Parameters:
Name Type Description optsObject Properties
Name Type Argument Description pagesPortnumber <optional>
port at which to start up pages server
apiPortnumber <optional>
port at which to start up api server
apiHoststring <optional>
specifies where api server is hosted (default: 'localhost')
configstring full path configuration provided to override browserify specific options and/or custom API/Pages servers init functions
entrystring entry file to add to browserify
watchdirstring <optional>
turns on live reload for the given directory
dedupeboolean <optional>
turns on dynamic-dedupe
tunnelboolean <optional>
sets up local tunnel pointing to @see opts.pagesPort and logs url to connect to from remote client
noclusterboolean <optional>
(default:
false) if set totruesingle servers are launched instead of a cluster of them
generated with docme
config
The config needs to provide either or all of the following properties on the module exports object:
- bundleOpts:
{Object}options passed tobrowserify().bundle(options) - initBrowserify:
{Function}invoked withbrowserifythat needs to return a browserify instance that can be initialized according to our needs - initPages {Function} invoked with
(pagesApp, express, apiServerInfo)where apiServerInfo is{ host: {string}, port: {number} } - postInitPages {Function} invoked with
(pagesApp, pagesServer, express)wherepagesServeris the result ofpagesApp.listen() - pagesSend500 {Function} invoked with
(req, res, err)to allow responding with a 500 error before worker gets taken offline and another one is launched - initApi {Function} invoked with
(apiApp, restify) - postInitApi {Function} invoked with
(apiApp, apiServer, restify)whereapiServeris the result ofapiApp.listen() - apiSend500 {Function} invoked with
(req, res, err)to allow responding with a 500 error before worker gets taken offline and another one is launched - events {EventEmitter} used to emit
infoanderrorevents, if not provided messages are logged to the console instead
Example config
// Bundle options
exports.bundleOpts = { debug: true, insertGlobals: false };
exports.initBrowserify = function (browserify) {
return browserify().transform('hbsfy');
};
// Server options
// Pages
exports.initPages = function (pagesApp, express, apiServerInfo) {
pagesApp.use(core.renderViewMiddleware(viewPath, { title: 'core' }));
};
exports.postInitPages = function (pagesApp, pagesServer, express) {
};
// API
exports.initApi = function (apiApp, restify) {
};
exports.postInitApi = function (apiApp, apiServer, restify) {
};
License
MIT