npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

connect-pindeps

v2.7.10

Published

High performance middleware framework

Readme

build status

Connect

Connect is an extensible HTTP server framework for node, providing high performance "plugins" known as middleware.

Connect is bundled with over 20 commonly used middleware, including a logger, session support, cookie parser, and more. Be sure to view the 2.x documentation.

var connect = require('connect')
  , http = require('http');

var app = connect()
  .use(connect.favicon())
  .use(connect.logger('dev'))
  .use(connect.static('public'))
  .use(connect.directory('public'))
  .use(connect.cookieParser())
  .use(connect.session({ secret: 'my secret here' }))
  .use(function(req, res){
    res.end('Hello from Connect!\n');
  });

http.createServer(app).listen(3000);

Middleware

Running Tests

first:

$ npm install -d

then:

$ make test

Authors

Below is the output from git-summary.

 project: connect
 commits: 2033
 active : 301 days
 files  : 171
 authors: 
  1414	Tj Holowaychuk          69.6%
   298	visionmedia             14.7%
   191	Tim Caswell             9.4%
    51	TJ Holowaychuk          2.5%
    10	Ryan Olds               0.5%
     8	Astro                   0.4%
     5	Nathan Rajlich          0.2%
     5	Jakub Nešetřil          0.2%
     3	Daniel Dickison         0.1%
     3	David Rio Deiros        0.1%
     3	Alexander Simmerl       0.1%
     3	Andreas Lind Petersen   0.1%
     2	Aaron Heckmann          0.1%
     2	Jacques Crocker         0.1%
     2	Fabian Jakobs           0.1%
     2	Brian J Brennan         0.1%
     2	Adam Malcontenti-Wilson 0.1%
     2	Glen Mailer             0.1%
     2	James Campos            0.1%
     1	Trent Mick              0.0%
     1	Troy Kruthoff           0.0%
     1	Wei Zhu                 0.0%
     1	comerc                  0.0%
     1	darobin                 0.0%
     1	nateps                  0.0%
     1	Marco Sanson            0.0%
     1	Arthur Taylor           0.0%
     1	Aseem Kishore           0.0%
     1	Bart Teeuwisse          0.0%
     1	Cameron Howey           0.0%
     1	Chad Weider             0.0%
     1	Craig Barnes            0.0%
     1	Eran Hammer-Lahav       0.0%
     1	Gregory McWhirter       0.0%
     1	Guillermo Rauch         0.0%
     1	Jae Kwon                0.0%
     1	Jakub Nesetril          0.0%
     1	Joshua Peek             0.0%
     1	Jxck                    0.0%
     1	AJ ONeal                0.0%
     1	Michael Hemesath        0.0%
     1	Morten Siebuhr          0.0%
     1	Samori Gorse            0.0%
     1	Tom Jensen              0.0%

Node Compatibility

Connect < 1.x is compatible with node 0.2.x

Connect 1.x is compatible with node 0.4.x

Connect (master) 2.x is compatible with node 0.6.x

CLA

http://sencha.com/cla

License

View the LICENSE file. The Silk icons used by the directory middleware created by/copyright of FAMFAMFAM.