metamaps--metamaps/realtime/node_modules/express/node_modules/connect
2014-09-30 15:34:35 -04:00
..
lib changed realtime folder 2014-02-10 02:03:06 -05:00
node_modules fixed the google analytics tracking code 2014-09-30 15:34:35 -04:00
.npmignore changed realtime folder 2014-02-10 02:03:06 -05:00
.travis.yml changed realtime folder 2014-02-10 02:03:06 -05:00
index.js changed realtime folder 2014-02-10 02:03:06 -05:00
LICENSE changed realtime folder 2014-02-10 02:03:06 -05:00
package.json changed realtime folder 2014-02-10 02:03:06 -05:00
Readme.md changed realtime folder 2014-02-10 02:03:06 -05:00

Connect build status

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

Contributors

https://github.com/senchalabs/connect/graphs/contributors

Node Compatibility

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

Connect 1.x is compatible with node 0.4.x

Connect 2.x is compatible with node 0.6.x

Connect (master) is compatible with node 0.8.x

CLA

http://sencha.com/cla

License

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