app.use([path,] function [, function...]) Mounts the specified middleware function or functions at the specified path. If path
Events
app.get(path, callback [, callback ...]) Routes HTTP GET requests to the specified path with the specified callback functions. For more information
app.enabled(name) Returns true if the setting name is enabled (true), where name is one
app.put(path, callback [, callback ...]) Routes HTTP PUT requests to the specified path with the specified callback functions. For more information
app.set(name, value) Assigns setting name to value, where name is one of the properties from the app
app.path() Returns the canonical path of the app, a string. var
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.disabled(name) Returns true if the Boolean setting name is disabled (false), where name
app.METHOD(path, callback [, callback ...]) Routes an HTTP request, where METHOD is the HTTP method of the request, such as GET, PUT, POST,
Page 2 of 3