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

@bull-board/hono

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bull-board/hono - npm Package Compare versions

Comparing version 5.19.0 to 5.19.1

5

dist/HonoAdapter.js

@@ -59,6 +59,7 @@ "use strict";

query: c.req.query(),
body: c.req.json(),
body: method !== 'get' ? await c.req.json() : {},
});
if (response.status == 204)
if (response.status == 204) {
return c.body(null, 204);
}
return c.json(response.body, response.status || 200);

@@ -65,0 +66,0 @@ }

6

package.json
{
"name": "@bull-board/hono",
"version": "5.19.0",
"version": "5.19.1",
"description": "A Hono server adapter for Bull-Board dashboard.",

@@ -31,4 +31,4 @@ "keywords": [

"dependencies": {
"@bull-board/api": "5.19.0",
"@bull-board/ui": "5.19.0",
"@bull-board/api": "5.19.1",
"@bull-board/ui": "5.19.1",
"ejs": "^3.1.10",

@@ -35,0 +35,0 @@ "hono": "^3.12.0"

Sorry, the diff of this file is not supported yet

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