Skip to content

Latest commit

 

History

History
125 lines (89 loc) · 4.05 KB

Readme.md

File metadata and controls

125 lines (89 loc) · 4.05 KB

Express

Insanely fast (and small) server-side JavaScript web development framework built on node.js and the V8 JavaScript engine.

Features (so far)

  • Sexy DSL with robust sinatra-like routing
  • High performance
  • Session support
  • Mime helpers
  • Redirection helpers
  • Multipart file upload support
  • Test helpers (mock requests etc)
  • Environment based configuration
  • Light-weight JavaScript class implementation via js-oo
  • View support (ejs, haml, sass, etc)
  • Full test coverage
  • Extremely readable specs

Installation

Currently Express must be cloned (or downloaded), you can use the following command to get rolling and initialize the submodule dependencies:

$ git clone git://github.com/visionmedia/express.git && cd express && git submodule update --init && make app

Or with the gh utility:

$ gh clone visionmedia express && cd express && git submodule update --init && make app

Performance

Extensive performance enhancements have not yet been made, since we are focusing on the framework it-self at the moment.

However if you are interested view the premature benchmarks for Express framework.

Examples

Below is a minimal app example when express is already within your load path.

require('express')
require('express/plugins')

configure(function(){
  use(MethodOverride)
  use(ContentLength)
  set('root', __dirname)
})

get('/hello', function(){
  this.contentType('html')
  return '<h1>World<h1>'
})

get('/user/:id?', function(id) {
  this.render('user.haml.html', {
    locals: {
      name: id ? 'User ' + id : 'You' 
    }
  })
})

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
...

Express is currently being developed with node --version: v0.1.31

More Information

Contributors

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.