New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fyrejet

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fyrejet - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

5

lib/routing/next.js

@@ -59,2 +59,3 @@ 'use strict'

for (let j = 0; j < route.keys.length;) params[route.keys[j]] = matches[++j]
} else {

@@ -103,4 +104,5 @@ matches = route.pattern.exec(req.path)

}
return
if (req.app.mounted) return
}
if (route.starCatchAll) { // the http://example.com/* route ;)

@@ -112,2 +114,3 @@ onChange.target(req.params)['0'] = '/' + decodeURIComponent(params['0'])

prevParams = JSON.stringify(prevParams)
if (prevParams !== JSON.stringify(params)) req.paramsPrev.push(Object.assign({}, params))

@@ -114,0 +117,0 @@ Object.keys(params).forEach(key => {

3

lib/routing/sequential.js

@@ -133,3 +133,4 @@ 'use strict'

fn = function (err) {
req.params = req.paramsPrev[req.paramsPrev.length - 1 || 0]
req.params = req.paramsPrev[req.paramsPrev.length - 2 ] || req.paramsPrev[req.paramsPrev.length - 1] || req.params
try {

@@ -136,0 +137,0 @@ return step(err)

{
"name": "fyrejet",
"version": "1.0.0",
"version": "1.0.1",
"description": "Web Framework for node.js that strives to provide (almost) perfect compatibility with Express, while providing better performance, where you need it.",

@@ -5,0 +5,0 @@ "main": "index.js",

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