UNPKG

2.15 kBJavaScriptView Raw
1
2/**
3 * # Connect
4 *
5 * Connect is a middleware framework for node,
6 * shipping with over 11 bundled middleware and a rich choice of
7 * [3rd-party middleware](https://github.com/senchalabs/connect/wiki).
8 *
9 * Installation:
10 *
11 * $ npm install connect
12 *
13 * API:
14 *
15 * - [connect](connect.html) general
16 * - [http](http.html) http server
17 * - [https](https.html) https server
18 *
19 * Middleware:
20 *
21 * - [logger](middleware-logger.html) request logger with custom format support
22 * - [csrf](middleware-csrf.html) Cross-site request forgery protection
23 * - [basicAuth](middleware-basicAuth.html) basic http authentication
24 * - [bodyParser](middleware-bodyParser.html) extensible request body parser
25 * - [cookieParser](middleware-cookieParser.html) cookie parser
26 * - [session](middleware-session.html) session management support with bundled [MemoryStore](middleware-session-memory.html)
27 * - [compiler](middleware-compiler.html) static asset compiler (sass, less, coffee-script, etc)
28 * - [methodOverride](middleware-methodOverride.html) faux HTTP method support
29 * - [responseTime](middleware-responseTime.html) calculates response-time and exposes via X-Response-Time
30 * - [router](middleware-router.html) provides rich Sinatra / Express-like routing
31 * - [staticCache](middleware-staticCache.html) memory cache layer for the static() middleware
32 * - [static](middleware-static.html) streaming static file server supporting `Range` and more
33 * - [directory](middleware-directory.html) directory listing middleware
34 * - [vhost](middleware-vhost.html) virtual host sub-domain mapping middleware
35 * - [favicon](middleware-favicon.html) efficient favicon server (with default icon)
36 * - [limit](middleware-limit.html) limit the bytesize of request bodies
37 * - [profiler](middleware-profiler.html) request profiler reporting response-time, memory usage, etc
38 * - [query](middleware-query.html) automatic querystring parser, populating `req.query`
39 * - [errorHandler](middleware-errorHandler.html) flexible error handler
40 *
41 * Internals:
42 *
43 * - connect [utilities](utils.html)
44 * - node monkey [patches](patch.html)
45 *
46 */
\No newline at end of file