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 🙏

© 2025 – Pkg Stats / Ryan Hefner

joyentexpress

v3.0.0

Published

Sinatra inspired web development framework

Readme

Express

Insanely fast (and small) server-side JavaScript web development framework built on node and Connect.

 var app = express.createServer();
 
 app.get('/', function(req, res){
   res.send('Hello World');
 });
 
 app.listen(3000);

Installation

$ npm install express

or to access the express(1) executable install globally:

$ npm install -g express

Quick Start

The quickest way to get started with express is to utilize the executable express(1) to generate an application as shown below:

Create the app:

$ npm install -g express
$ express /tmp/foo && cd /tmp/foo

Install dependencies:

$ npm install -d

Start the server:

$ node app.js

Features

  • Robust routing
  • Redirection helpers
  • Dynamic view helpers
  • Content negotiation
  • Focus on high performance
  • View rendering and partials support
  • Environment based configuration
  • Session based flash notifications
  • Built on Connect
  • High test coverage
  • Executable for generating applications quickly
  • Application level view options

Via Connect:

  • Session support
  • Cache API
  • Mime helpers
  • ETag support
  • Persistent flash notifications
  • Cookie support
  • JSON-RPC
  • Logging
  • and much more!

More Information

Node Compatibility

Express 1.x is compatible with node 0.2.x and connect < 1.0.

Express 2.x is compatible with node 0.4.x, node 0.6.x and connect 1.x

Express 3.x (master branch) is compatible with node 0.6.x and connect 2.x

Viewing Examples

First install the dev dependencies to install all the example / test suite deps:

$ npm install -d

then run whichever tests you want:

$ node examples/jade/app.js

Running Tests

To run the test suite first invoke the following command within the repo, installing the development dependencies:

$ npm install

then run the tests:

$ make test

Contributors

project: express
commits: 3410
files  : 230
authors: 
 1883	Tj Holowaychuk          55.2%
 1285	visionmedia             37.7%
   72	TJ Holowaychuk          2.1%
   54	Aaron Heckmann          1.6%
   34	csausdev                1.0%
   26	ciaranj                 0.8%
    6	Guillermo Rauch         0.2%
    3	Dav Glass               0.1%
    3	Nick Poulden            0.1%
    2	Jake Gordon             0.1%
    2	Ben Weaver              0.1%
    2	Hunter Loftis           0.1%
    2	Benny Wong              0.1%
    2	Dave Hoover             0.1%
    2	Brian McKinney          0.1%
    2	Daniel Shaw             0.1%
    1	Masahiro Hayashi        0.0%
    1	Matt Colyer             0.0%
    1	Pau Ramon               0.0%
    1	Peter Rekdal Sunde      0.0%
    1	Raynos                  0.0%
    1	Roman Shtylman          0.0%
    1	Teng Siong Ong          0.0%
    1	Viktor Kelemen          0.0%
    1	ctide                   0.0%
    1	ewoudj                  0.0%
    1	isaacs                  0.0%
    1	mgutz                   0.0%
    1	pikeas                  0.0%
    1	shuwatto                0.0%
    1	Justin Lilly            0.0%
    1	Adam Sanderson          0.0%
    1	Andrii Kostenko         0.0%
    1	Arpad Borsos            0.0%
    1	Ashwin Purohit          0.0%
    1	Darren Torpey           0.0%
    1	Greg Ritter             0.0%
    1	Gregory Ritter          0.0%
    1	James Herdman           0.0%
    1	Joe McCann              0.0%
    1	Jonathan Dumaine        0.0%
    1	Jonathan Palardy        0.0%
    1	Jonathan Zacsh          0.0%
    1	8bitDesigner            0.0%
    1	Ken Sato                0.0%
    1	Maciej Małecki          0.0%

License

(The MIT License)

Copyright (c) 2009-2011 TJ Holowaychuk <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.