Socket
Socket
Sign inDemoInstall

connect

Package Overview
Dependencies
Maintainers
4
Versions
234
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect - npm Package Compare versions

Comparing version 3.3.2 to 3.3.3

13

History.md

@@ -0,1 +1,6 @@

3.3.3 / 2014-11-09
==================
* Correctly invoke async callback asynchronously
3.3.2 / 2014-10-28

@@ -88,2 +93,10 @@ ==================

2.27.3 / 2014-11-09
===================
* Correctly invoke async callback asynchronously
* deps: csurf@~1.6.3
- bump csrf
- bump http-errors
2.27.2 / 2014-10-28

@@ -90,0 +103,0 @@ ===================

7

lib/proto.js

@@ -25,2 +25,7 @@ /*!

/* istanbul ignore next */
var defer = typeof setImmediate === 'function'
? setImmediate
: function(fn){ process.nextTick(fn.bind.apply(fn, arguments)) }
/**

@@ -118,3 +123,3 @@ * Utilize the given middleware `handle` to the given `route`,

if (!layer) {
done(err);
defer(done, err);
return;

@@ -121,0 +126,0 @@ }

6

package.json
{
"name": "connect",
"description": "High performance middleware framework",
"version": "3.3.2",
"version": "3.3.3",
"author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",

@@ -27,4 +27,4 @@ "contributors": [

"istanbul": "0.3.2",
"mocha": "~2.0.0",
"should": "~4.1.0",
"mocha": "~2.0.1",
"should": "~4.2.1",
"supertest": "~0.14.0"

@@ -31,0 +31,0 @@ },

@@ -62,3 +62,3 @@ # Connect

The core of Connect is "using" middleware. Middleware are added as a "stack"
where incoming requests will execure each middleware one-by-one until a middleware
where incoming requests will execute each middleware one-by-one until a middleware
does not call `next()` within it.

@@ -65,0 +65,0 @@

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc