app.post(path, callback [, callback ...]) Routes HTTP POST requests to the specified path with the specified callback functions. For more information
app.mountpath The app.mountpath property contains one or more path patterns on which a sub-app was mounted.
app.listen(port, [hostname], [backlog], [callback]) Binds and listens for connections on the specified host and port. This method is identical
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
app.param([name], callback) Add callback triggers to route parameters, where name is the name of the parameter or an array of them
app.all(path, callback [, callback ...]) This method is like the standard
app.get(name) Returns the value of name app setting, where name is one of strings in the app settings table. For example:
Events
app.enable(name) Sets the Boolean setting name to true, where name is one of the properties from the
app.use([path,] function [, function...]) Mounts the specified middleware function or functions at the specified path. If path
Page 1 of 3