Socket
Socket
Sign inDemoInstall

express

Package Overview
Dependencies
18
Maintainers
0
Versions
276
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.3.7 to 2.3.8

2

lib/express.js

@@ -31,3 +31,3 @@

exports.version = '2.3.7';
exports.version = '2.3.8';

@@ -34,0 +34,0 @@ /**

@@ -109,3 +109,3 @@

// strip irrelevant headers
if (204 === status) {
if (204 == status) {
this.removeHeader('Content-Type');

@@ -112,0 +112,0 @@ this.removeHeader('Content-Length');

@@ -199,3 +199,3 @@

// implied OPTIONS
if ('OPTIONS' == req.method) return self._options(req, res);
if (!route && 'OPTIONS' == req.method) return self._options(req, res);

@@ -285,3 +285,3 @@ // no route

var routes = self.routes[method];
if (!routes) return;
if (!routes || 'options' == method) return;
for (var i = 0, len = routes.length; i < len; ++i) {

@@ -288,0 +288,0 @@ if (routes[i].match(path)) return true;

{
"name": "express",
"description": "Sinatra inspired web development framework",
"version": "2.3.7",
"version": "2.3.8",
"author": "TJ Holowaychuk <tj@vision-media.ca>",

@@ -6,0 +6,0 @@ "contributors": [

@@ -65,2 +65,4 @@

* [express-namespace](http://github.com/visionmedia/express-namespace) namespaced route support
* [express-params](https://github.com/visionmedia/express-params) param pre-condition functions
* [express-mongoose](https://github.com/LearnBoost/express-mongoose) plugin for easy rendering of Mongoose async Query results
* Follow [tjholowaychuk](http://twitter.com/tjholowaychuk) on twitter for updates

@@ -67,0 +69,0 @@ * [Google Group](http://groups.google.com/group/express-js) for discussion

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc