Skip to content

Commit fe67523

Browse files
rodion-arrdougwilson
authored andcommitted
docs: add examples summary page
closes expressjs#4343 closes expressjs#4354
1 parent 4486fa6 commit fe67523

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

examples/README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Express examples
2+
3+
This page contains list of examples using Express.
4+
5+
- [auth](./auth) - Authentication with login and password
6+
- [content-negotiation](./content-negotiation) - HTTP content negotiation
7+
- [cookie-sessions](./cookie-sessions) - Working with cookie-based session
8+
- [cookies](./cookies) - Working with cookies
9+
- [downloads](./downloads) - Transferring files to client
10+
- [ejs](./ejs) - Working with Embedded JavaScript templating (ejs)
11+
- [error-pages](./error-pages) - Creating error pages
12+
- [error](./error) - Working with error middleware
13+
- [hello-world](./hello-world) - Simple request handler
14+
- [markdown](./markdown) - Markdown as template engine
15+
- [multi-router](./multi-router) - Working with multiple express routers
16+
- [multipart](./multipart) - Accepting multipart-encoded forms
17+
- [mvc](./mvc) - MVC style controllers
18+
- [online](./online) - Tracking online user activity with `online` and `redis` packages
19+
- [params](./params) - Working with route parameters
20+
- [resource](./resource) - Multiple HTTP operations on the same resource
21+
- [route-map](./route-map) - Organizing routes using map
22+
- [route-middleware](./route-middleware) - Working with route middleware
23+
- [route-separation](./route-separation) - Organizing routes per each resource
24+
- [search](./search) - Search API
25+
- [session](./session) - User sessions
26+
- [static-files](./static-files) - Serving static files
27+
- [vhost](./vhost) - Working with virtual hosts
28+
- [view-constructor](./view-constructor) - Rendering views dynamically
29+
- [view-locals](./view-locals) - Saving data in request object between middleware calls
30+
- [web-service](./web-service) - Simple API service

0 commit comments

Comments
 (0)