Socket
Socket
Sign inDemoInstall

connect

Package Overview
Dependencies
4
Maintainers
4
Versions
234
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect


Version published
Maintainers
4
Created

Package description

What is connect?

The connect npm package is a middleware layer for Node.js, designed to be used as a part of the 'http' module. It allows developers to create a series of middleware functions to handle requests and responses in a sequential manner. Connect is often used to set up middleware that can perform various tasks such as logging, parsing, session handling, and more.

What are connect's main functionalities?

Logging

This feature allows you to log every request that comes into the server with the method and URL.

const connect = require('connect');
const app = connect();

// Middleware for logging
function logger(req, res, next) {
  console.log('%s %s', req.method, req.url);
  next();
}

app.use(logger);

app.listen(3000);

Static File Serving

This feature serves static files from a specified directory, in this case, 'public'.

const connect = require('connect');
const serveStatic = require('serve-static');
const app = connect();

app.use(serveStatic('public'));

app.listen(3000);

Body Parsing

This feature allows you to parse the body of incoming requests in middleware before handling them.

const connect = require('connect');
const bodyParser = require('body-parser');
const app = connect();

app.use(bodyParser.json());

app.use(function(req, res) {
  res.end(JSON.stringify(req.body));
});

app.listen(3000);

Cookie Parsing

This feature allows you to parse cookies attached to the client request object.

const connect = require('connect');
const cookieParser = require('cookie-parser');
const app = connect();

app.use(cookieParser());

app.use(function(req, res) {
  res.end(JSON.stringify(req.cookies));
});

app.listen(3000);

Other packages similar to connect

Readme

Source

Connect

NPM Version NPM Downloads Build Status Test Coverage Gittip

Connect is an extensible HTTP server framework for node using "plugins" known as middleware.

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 organization
  • All node patches will be removed - all middleware should work without Connect and with similar frameworks like 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.

Middleware

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

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:

Checkout http-framework for many other compatible middleware!

Running Tests

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

Keywords

FAQs

Last updated on 08 Sep 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc