# connect **Repository Path**: mirrors_auth0/connect ## Basic Information - **Project Name**: connect - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Connect [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] [![Gittip][gittip-image]][gittip-url] Connect is an extensible HTTP server framework for [node](http://nodejs.org) using "plugins" known as _middleware_. ```js var connect = require('connect') var http = require('http') var app = connect() // gzip/deflate outgoing responses var compression = require('compression') app.use(compression()) // store session state in browser cookie var cookieSession = require('cookie-session') app.use(cookieSession({ keys: ['secret1', 'secret2'] })) // parse urlencoded request bodies into req.body var bodyParser = require('body-parser') app.use(bodyParser.urlencoded()) // respond to all requests app.use(function(req, res){ res.end('Hello from Connect!\n'); }) //create node.js http server and listen on port http.createServer(app).listen(3000) ``` ## Connect 3.0 Connect 3.0 is in progress in the `master` branch. The main changes in Connect are: - Middleware will be moved to their own repositories in the [expressjs](http://github.com/expressjs) organization - All node patches will be removed - all middleware _should_ work without Connect and with similar frameworks like [restify](https://github.com/mcavage/node-restify) - Node `0.8` is no longer supported - The website documentation has been removed - view the markdown readmes instead If you would like to help maintain these middleware, please contact a [member of the expressjs team](https://github.com/orgs/expressjs/people). ## Middleware 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) - previousy `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) - previousy `directory` - [serve-static](https://github.com/expressjs/serve-static) - previously `static` - [vhost](https://github.com/expressjs/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) - `limit` - [raw-body](https://github.com/stream-utils/raw-body) - `multipart` - [connect-multiparty](https://github.com/superjoe30/connect-multiparty) - [connect-busboy](https://github.com/mscdex/connect-busboy) - `query` - [qs](https://github.com/visionmedia/node-querystring) - `staticCache` - [st](https://github.com/isaacs/st) - [connect-static](https://github.com/andrewrk/connect-static) Checkout [http-framework](https://github.com/Raynos/http-framework/wiki/Modules) for many other compatible middleware! ## Running Tests ```bash npm install npm test ``` ## Contributors https://github.com/senchalabs/connect/graphs/contributors ## Node Compatibility - Connect `< 1.x` - node `0.2` - Connect `1.x` - node `0.4` - Connect `< 2.8` - node `0.6` - Connect `>= 2.8 < 3` - node `0.8` - Connect `>= 3` - node `0.10` ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/connect.svg?style=flat [npm-url]: https://npmjs.org/package/connect [travis-image]: https://img.shields.io/travis/senchalabs/connect.svg?style=flat [travis-url]: https://travis-ci.org/senchalabs/connect [coveralls-image]: https://img.shields.io/coveralls/senchalabs/connect.svg?style=flat [coveralls-url]: https://coveralls.io/r/senchalabs/connect [downloads-image]: https://img.shields.io/npm/dm/connect.svg?style=flat [downloads-url]: https://npmjs.org/package/connect [gittip-image]: https://img.shields.io/gittip/dougwilson.svg?style=flat [gittip-url]: https://www.gittip.com/dougwilson/