Socket
Socket
Sign inDemoInstall

expressis

Package Overview
Dependencies
91
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    expressis

Modified version of the popular web framework Express.


Version published
Weekly downloads
2
Maintainers
1
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 24 Apr 2014

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc