You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

expressis

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expressis

Modified version of the popular web framework Express.

0.0.1
latest
Source
npmnpm
Version published
Weekly downloads
1
-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

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:

  • expressis.bodyParser() body-parser
  • expressis.json() body-parser
  • expressis.urlencoded() body-parser
  • expressis.multipart() connect-multiparty
  • expressis.compress() compression
  • expressis.timeout() connect-timeout
  • expressis.cookieParser() cookie-parser
  • expressis.cookieSession() cookie-session
  • expressis.csrf() csurf
  • expressis.errorHandler() errorhandler
  • expressis.session() express-session
  • expressis.methodOverride() method-override
  • expressis.logger() morgan
  • expressis.responseTime() response-time
  • expressis.directory() serve-index
  • expressis.static() serve-static
  • expressis.favicon() static-favicon
  • expressis.flash() connect-flash
  • expressis.useragent() express-useragent
  • expressis.vhost() vhost
  • expressis.basicAuth()
  • app.param() express-params

More Information

Keywords

expressis

FAQs

Package last updated on 24 Apr 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts