expressis

0.0.1 • Public • Published

expressis

Fast, unopinionated, minimalist web framework for NodeJS.

var expressis = require('expressis');
var app = expressis();
 
app.use(express.methodOverride());
app.use(express.bodyParser());
app.use(express.static(__dirname + '/public'));
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
 
app.get('/', function(req, res){
  res.send('hello world');
});
 
app.listen(3000);

Installation

$ npm install expressis

Features

  • Robust routing
  • HTTP helpers (redirection, caching, etc)
  • View system supporting 14+ template engines
  • Content negotiation
  • Focus on high performance
  • Executable for generating applications quickly
  • High test coverage

Middleware

These middleware and libraries are included:

More Information

Package Sidebar

Install

npm i expressis

Weekly Downloads

0

Version

0.0.1

License

none

Last publish

Collaborators

  • biggora