app.enable(name) Sets the Boolean setting name to true, where name is one of the properties from the
app.get(name) Returns the value of name app setting, where name is one of strings in the app settings table. For example:
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.disabled(name) Returns true if the Boolean setting name is disabled (false), where name
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.disable(name) Sets the Boolean setting name to false, where name is one of the properties from the
Page 2 of 3