app.post(path, callback [, callback ...]) Routes HTTP POST requests to the specified path with the specified callback functions. For more information
app.listen(port, [hostname], [backlog], [callback]) Binds and listens for connections on the specified host and port. This method is identical
app.mountpath The app.mountpath property contains one or more path patterns on which a sub-app was mounted.
app.delete(path, callback [, callback ...]) Routes HTTP DELETE requests to the specified path with the specified callback functions. For more
app.all(path, callback [, callback ...]) This method is like the standard
app.enable(name) Sets the Boolean setting name to true, where name is one of the properties from the
app.engine(ext, callback) Registers the given template engine callback as ext. By
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.use([path,] function [, function...]) Mounts the specified middleware function or functions at the specified path. If path
Page 1 of 3