Socket
Socket
Sign inDemoInstall

spdy

Package Overview
Dependencies
Maintainers
3
Versions
206
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

spdy - npm Package Compare versions

Comparing version 3.2.3 to 3.2.4

4

lib/spdy/response.js

@@ -81,4 +81,4 @@ 'use strict';

path: path,
method: 'GET',
status: 200,
method: headers.method ? headers.method.toString() : 'GET',
status: headers.status ? headers.status.toString() : 200,
host: this.socket.parser.incoming.headers.host,

@@ -85,0 +85,0 @@ headers: headers.request,

{
"name": "spdy",
"version": "3.2.3",
"version": "3.2.4",
"description": "Implementation of the SPDY protocol on node.js.",

@@ -5,0 +5,0 @@ "license": "MIT",

# SPDY Server for node.js
[![Build Status](https://secure.travis-ci.org/indutny/node-spdy.png)](http://travis-ci.org/indutny/node-spdy)
[![Build Status](https://travis-ci.org/indutny/node-spdy.svg?branch=master)](https://travis-ci.org/indutny/node-spdy)
[![NPM version](https://badge.fury.io/js/spdy.svg)](http://badge.fury.io/js/spdy)

@@ -124,2 +124,4 @@

var stream = res.push('/main.js', {
status: 200, // optional
method: 'GET', // optional
request: {

@@ -126,0 +128,0 @@ accept: '*/*'

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