Skip to content

Commit

Permalink
docs: link to npmjs.org in readme
Browse files Browse the repository at this point in the history
closes #1068
  • Loading branch information
dougwilson committed Dec 29, 2014
1 parent 0509cb8 commit d0013f5
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions Readme.md
Expand Up @@ -121,41 +121,41 @@ var server = http.createServer(app);

These middleware and libraries are officially supported by the Connect/Express team:

- [body-parser](https://github.com/expressjs/body-parser) - previous `bodyParser`, `json`, and `urlencoded`. You may also be interested in:
- [body](https://github.com/raynos/body)
- [co-body](https://github.com/visionmedia/co-body)
- [raw-body](https://github.com/stream-utils/raw-body)
- [compression](https://github.com/expressjs/compression) - previously `compress`
- [connect-timeout](https://github.com/expressjs/timeout) - previously `timeout`
- [cookie-parser](https://github.com/expressjs/cookie-parser) - previously `cookieParser`
- [cookie-session](https://github.com/expressjs/cookie-session) - previously `cookieSession`
- [csurf](https://github.com/expressjs/csurf) - previously `csrf`
- [errorhandler](https://github.com/expressjs/errorhandler) - previously `error-handler`
- [express-session](https://github.com/expressjs/session) - previously `session`
- [method-override](https://github.com/expressjs/method-override) - previously `method-override`
- [morgan](https://github.com/expressjs/morgan) - previously `logger`
- [response-time](https://github.com/expressjs/response-time) - previously `response-time`
- [serve-favicon](https://github.com/expressjs/serve-favicon) - previously `favicon`
- [serve-index](https://github.com/expressjs/serve-index) - previously `directory`
- [serve-static](https://github.com/expressjs/serve-static) - previously `static`
- [vhost](https://github.com/expressjs/vhost) - previously `vhost`
- [body-parser](https://www.npmjs.com/package/body-parser) - previous `bodyParser`, `json`, and `urlencoded`. You may also be interested in:
- [body](https://www.npmjs.com/package/body)
- [co-body](https://www.npmjs.com/package/co-body)
- [raw-body](https://www.npmjs.com/package/raw-body)
- [compression](https://www.npmjs.com/package/compression) - previously `compress`
- [connect-timeout](https://www.npmjs.com/package/connect-timeout) - previously `timeout`
- [cookie-parser](https://www.npmjs.com/package/cookie-parser) - previously `cookieParser`
- [cookie-session](https://www.npmjs.com/package/cookie-session) - previously `cookieSession`
- [csurf](https://www.npmjs.com/package/csurf) - previously `csrf`
- [errorhandler](https://www.npmjs.com/package/errorhandler) - previously `error-handler`
- [express-session](https://www.npmjs.com/package/express-session) - previously `session`
- [method-override](https://www.npmjs.com/package/method-override) - previously `method-override`
- [morgan](https://www.npmjs.com/package/morgan) - previously `logger`
- [response-time](https://www.npmjs.com/package/response-time) - previously `response-time`
- [serve-favicon](https://www.npmjs.com/package/serve-favicon) - previously `favicon`
- [serve-index](https://www.npmjs.com/package/serve-index) - previously `directory`
- [serve-static](https://www.npmjs.com/package/serve-static) - previously `static`
- [vhost](https://www.npmjs.com/package/vhost) - previously `vhost`

Most of these are exact ports of their Connect 2.x equivalents. The primary exception is `cookie-session`.

Some middleware previously included with Connect are no longer supported by the Connect/Express team, are replaced by an alternative module, or should be superseded by a better module. Use one of these alternatives instead:

- `cookieParser`
- [cookies](https://github.com/jed/cookies) and [keygrip](https://github.com/jed/keygrip)
- [cookies](https://www.npmjs.com/package/cookies) and [keygrip](https://www.npmjs.com/package/keygrip)
- `limit`
- [raw-body](https://github.com/stream-utils/raw-body)
- [raw-body](https://www.npmjs.com/package/raw-body)
- `multipart`
- [connect-multiparty](https://github.com/superjoe30/connect-multiparty)
- [connect-busboy](https://github.com/mscdex/connect-busboy)
- [connect-multiparty](https://www.npmjs.com/package/connect-multiparty)
- [connect-busboy](https://www.npmjs.com/package/connect-busboy)
- `query`
- [qs](https://github.com/visionmedia/node-querystring)
- [qs](https://www.npmjs.com/package/qs)
- `staticCache`
- [st](https://github.com/isaacs/st)
- [connect-static](https://github.com/andrewrk/connect-static)
- [st](https://www.npmjs.com/package/st)
- [connect-static](https://www.npmjs.com/package/connect-static)

Checkout [http-framework](https://github.com/Raynos/http-framework/wiki/Modules) for many other compatible middleware!

Expand Down

0 comments on commit d0013f5

Please sign in to comment.