Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bay

Package Overview
Dependencies
Maintainers
4
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bay - npm Package Compare versions

Comparing version 0.5.8 to 0.5.9

7

application.js

@@ -78,3 +78,8 @@ 'use strict';

// Find the matching route
const match = self.router.match(parse(req).pathname, req.method);
let match
try {
match = self.router.match(parse(req).pathname, req.method);
} catch (err) {
return self.handleError(req, res, err);
}
if (!match) {

@@ -81,0 +86,0 @@ return self.handleError(req, res, new exceptions.RoutingError('No route matches'));

2

package.json
{
"name": "bay",
"version": "0.5.8",
"version": "0.5.9",
"description": "The framework",

@@ -5,0 +5,0 @@ "main": "application.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