app.on('mount', callback(parent)) The mount event is fired on a sub-app, when it is mounted on a parent app. The parent app is
Events
app.get(path, callback [, callback ...]) Routes HTTP GET requests to the specified path with the specified callback functions. For more information
app.route(path) Returns an instance of a single route, which you can then use to handle HTTP verbs with optional middleware. Use app.route()
app.enabled(name) Returns true if the setting name is enabled (true), where name is one
app.disabled(name) Returns true if the Boolean setting name is disabled (false), where name
app.path() Returns the canonical path of the app, a string. var
app.set(name, value) Assigns setting name to value, where name is one of the properties from the app
app.put(path, callback [, callback ...]) Routes HTTP PUT requests to the specified path with the specified callback functions. For more information
app.disable(name) Sets the Boolean setting name to false, where name is one of the properties from the
Page 2 of 3