Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 2.19 KB

index.md

File metadata and controls

53 lines (40 loc) · 2.19 KB
var app = express.createServer();

app.get('/', function(req, res){
    res.send('Hello World');
});

app.listen(3000);

Features

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

Contributors

The following are the major contributors of Express (in no specific order).

Third-Party Modules

The following modules compliment or extend Express directly:

More Information