app.post()

app.post(path, callback [, callback ...]) Routes HTTP POST requests to the specified path with the specified callback functions. For more information

2016-05-02 16:34:31
app.listen()

app.listen(port, [hostname], [backlog], [callback]) Binds and listens for connections on the specified host and port. This method is identical

2016-05-02 16:34:26
app.mountpath

app.mountpath The app.mountpath property contains one or more path patterns on which a sub-app was mounted.

2016-05-02 16:34:29
app.param()

app.param([name], callback) Add callback triggers to route parameters, where name is the name of the parameter or an array of them

2016-05-02 16:34:30
app.enable()

app.enable(name) Sets the Boolean setting name to true, where name is one of the properties from the

2016-05-02 16:34:24
app.on()

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

2016-05-02 16:34:29
app.engine()

app.engine(ext, callback) Registers the given template engine callback as ext. By

2016-05-02 16:34:25
app.delete()

app.delete(path, callback [, callback ...]) Routes HTTP DELETE requests to the specified path with the specified callback functions. For more

2016-05-02 16:34:23
app.all()

app.all(path, callback [, callback ...]) This method is like the standard

2016-05-02 16:34:21
app.use()

app.use([path,] function [, function...]) Mounts the specified middleware function or functions at the specified path. If path

2016-05-02 16:34:35