app.mountpath
  • References/JavaScript/Express/Application

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

2025-01-10 15:47:30
app.listen()
  • References/JavaScript/Express/Application

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

2025-01-10 15:47:30
app.post()
  • References/JavaScript/Express/Application

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

2025-01-10 15:47:30
app.on()
  • References/JavaScript/Express/Application

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

2025-01-10 15:47:30
app.delete()
  • References/JavaScript/Express/Application

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

2025-01-10 15:47:30
app.get()
  • References/JavaScript/Express/Application

app.get(name) Returns the value of name app setting, where name is one of strings in the app settings table. For example:

2025-01-10 15:47:30
app.use()
  • References/JavaScript/Express/Application

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

2025-01-10 15:47:30
Events
  • References/JavaScript/Express/Application

Events

2025-01-10 15:47:30
app.param()
  • References/JavaScript/Express/Application

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

2025-01-10 15:47:30
app.enable()
  • References/JavaScript/Express/Application

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

2025-01-10 15:47:30