| CARVIEW |
visionmedia / express
- Source
- Commits
- Network (65)
- Issues (59)
- Downloads (25)
- Wiki (5)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sinatra-inspired JavaScript node web development framework -- insanely fast, insanely sexy — Read more
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Thu Apr 22 13:20:24 -0700 2010 | Generating bar graphs for requests per sec [visionmedia] |
| |
.gitmodules | Sat Apr 10 02:06:04 -0700 2010 | Temporarily add back in the old multipart suppo... [ciaranj] |
| |
History.md | Mon Jul 05 14:24:46 -0700 2010 | Release 0.14.1 [visionmedia] |
| |
Makefile | Thu Jun 03 16:25:50 -0700 2010 | Removed bin/express for now :) maybe it will c... [visionmedia] |
| |
Readme.md | Tue Jun 15 14:25:20 -0700 2010 | Added npm install docs [visionmedia] |
| |
benchmarks/ | Thu Jun 10 11:09:26 -0700 2010 | Removed bufferSize from static benchmarks [visionmedia] |
| |
examples/ | Tue Jun 01 08:44:26 -0700 2010 | Fixed upload example [visionmedia] |
| |
lib/ | Mon Jul 05 14:24:46 -0700 2010 | Release 0.14.1 [visionmedia] |
| |
package.json | Mon Jul 05 14:24:46 -0700 2010 | Release 0.14.1 [visionmedia] |
| |
seed.yml | Mon Jul 05 14:24:46 -0700 2010 | Release 0.14.1 [visionmedia] |
| |
spec/ | Sun May 30 13:14:08 -0700 2010 | mime.type() no longer accepts ".type" [visionmedia] |
Express
Insanely fast (and small) server-side JavaScript web development framework built on node.js and the V8 JavaScript engine.
- Visit the Wiki for documentation
- Visit the Google Group for discussion
Express will soon run on the Connect project, a middleware layer for nodejs.
Features (so far)
- Sexy DSL with robust sinatra-like routing
- High performance
- Session support
- Cache API
- RESTful HTTP client
- Mime helpers
- ETag support
- Redirection helpers
- Multipart file upload support
- Test helpers (mock requests etc)
- Environment based configuration
- Light-weight JavaScript class implementation via class.js
- Persistent flash messages
- Route passing
- View support (ejs, haml, sass, etc)
- View partials
- View globals/helpers support
- Full test coverage
- Logger plugin with several formats
- Upload size restrictions
- Extremely readable specs
- Cookie support
Installation
Install the Kiwi package manager for nodejs and run:
$ kiwi install express
or via npm:
$ npm install express
or
Install via git clone:
$ git clone git://github.com/visionmedia/express.git && cd express && git submodule update --init
Examples
Below is a tiny Express application. View the Wiki for detailed information.
require.paths.unshift('express/lib')
require('express')
configure(function(){
set('root', __dirname)
})
get('/user', function(){
this.redirect('/user/' + this.currentUser.id)
})
get('/user/:id', function(id){
this.render('user.haml.html', {
locals: {
user: this.currentUser,
usersOnline: Session.store.length()
}
})
})
run()
Running Tests
Express uses the JSpec BDD JavaScript testing framework to write and run elegant spec suites. JSpec is frozen to spec/lib and does not require separate installation.
$ make test
Run individual suites:
$ node spec/node.js core
$ node spec/node.js mime
$ node spec/node.js routing
...
The latest release of Express is compatible with node --version:
v0.1.98
With EDGE Express we do our best to keep up to date with node's EDGE
More Information
- JavaScript Extensions & Utilities
- JavaScript Sass
- Featured in Advanced JavaScript e-book for only $4
- Express vs Sinatra Benchmarks
Contributors
- TJ Holowaychuk (visionmedia) <tj@vision-media.ca>
- Aaron Heckmann (aheckmann) <aaron.heckmann+github@gmail.com>
- Ciaran Jessup (ciaranj) <ciaranj@gmail.com>
- Gareth Jones (csausdev) <gareth.jones@sensis.com.au>
License
(The MIT License)
Copyright (c) 2009 TJ Holowaychuk <tj@vision-media.ca>
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.

