An open API service indexing awesome lists of open source software.

https://github.com/jacobway/expressappondocs

Practice express js on official documents
https://github.com/jacobway/expressappondocs

expressjs nodejs web

Last synced: 28 days ago
JSON representation

Practice express js on official documents

Awesome Lists containing this project

README

          

# Guide

## Routing
Routing resfers to the definition of application end points (URIs) and how they response to client requests.

### Routing methods
* express class -> routing methods -> http methods

### Routing paths
* route path based on strings
* route path based on string patterns
* route path based on regular expressions

### Route parameters

### Route handlers

### Response methods
* response.download()
* response.end()
* response.json()
* response.jsonp()
* response.redirect()
* response.render()
* response.send()
* response.sendFile()
* response.sendStatus()

### app.route()

### express.Router
Use the express.Router class to create modular, mountable route handlers.