Events
app.use([path,] function [, function...]) Mounts the specified middleware function or functions at the specified path. If path
app.get(path, callback [, callback ...]) Routes HTTP GET requests to the specified path with the specified callback functions. For more information
app.path() Returns the canonical path of the app, a string. var
app.disabled(name) Returns true if the Boolean setting name is disabled (false), where name
app.enabled(name) Returns true if the setting name is enabled (true), where name is one
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.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.locals The app.locals object has properties that are local variables within the application.
Page 2 of 3