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

fluvial

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fluvial - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

7

dist/response.js

@@ -11,3 +11,8 @@ import { randomUUID } from 'node:crypto';

set(target, property, newValue) {
rawResponse.setHeader(property, newValue);
if (!newValue && rawResponse.hasHeader(property)) {
rawResponse.removeHeader(property);
}
else if (newValue) {
rawResponse.setHeader(property, newValue);
}
target[property] = newValue;

@@ -14,0 +19,0 @@ return true;

2

package.json
{
"name": "fluvial",
"version": "0.2.0",
"version": "0.2.1",
"description": "Fluvial: A light http/2 server framework, similar to Express",

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

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