Socket
Socket
Sign inDemoInstall

spdy-transport

Package Overview
Dependencies
15
Maintainers
3
Versions
50
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    spdy-transport

SPDY v2, v3, v3.1 and HTTP2 transport


Version published
Weekly downloads
11M
increased by3.54%
Maintainers
3
Install size
613 kB
Created
Weekly downloads
 

Package description

What is spdy-transport?

The spdy-transport package is an npm module that provides a stream-based API for SPDY protocol communication. It is designed to work with both SPDY/3.1 and HTTP/2, and it can be used to create SPDY or HTTP/2 servers and clients in Node.js.

What are spdy-transport's main functionalities?

SPDY/HTTP2 server creation

This code sample demonstrates how to create a SPDY/HTTP2 server using the spdy-transport package. The server listens on port 3000 and responds with 'hello world!' to all requests.

const spdy = require('spdy');
const http = require('http');

const server = spdy.createServer({
  spdy: {
    protocols: ['h2', 'spdy/3.1', ...],
    plain: false,
    'x-forwarded-for': true,
    connection: {
      windowSize: 1024 * 1024, // Server's window size
      autoSpdy31: false
    }
  }
}, (req, res) => {
  res.writeHead(200);
  res.end('hello world!');
});

server.listen(3000);

SPDY/HTTP2 client creation

This code sample shows how to create a SPDY/HTTP2 client using the spdy-transport package. The client connects to 'https://www.example.com' and sends a GET request to the root path.

const spdy = require('spdy');
const http2 = require('http2');

const client = spdy.connect('https://www.example.com', (err, socket) => {
  if (err) {
    throw new Error(err);
  }

  const req = http2.request({
    ':method': 'GET',
    ':path': '/'
  });

  req.on('response', (headers) => {
    // handle headers
  });

  req.on('data', (chunk) => {
    // handle data
  });

  req.on('end', () => {
    console.log('request ended');
  });

  req.end();
});

Other packages similar to spdy-transport

Readme

Source

spdy-transport

Build Status NPM version dependencies Status Standard - JavaScript Style Guide Waffle

SPDY/HTTP2 generic transport implementation.

Usage

var transport = require('spdy-transport');

// NOTE: socket is some stream or net.Socket instance, may be an argument
// of `net.createServer`'s connection handler.

var server = transport.connection.create(socket, {
  protocol: 'http2',
  isServer: true
});

server.on('stream', function(stream) {
  console.log(stream.method, stream.path, stream.headers);
  stream.respond(200, {
    header: 'value'
  });

  stream.on('readable', function() {
    var chunk = stream.read();
    if (!chunk)
      return;

    console.log(chunk);
  });

  stream.on('end', function() {
    console.log('end');
  });

  // And other node.js Stream APIs
  // ...
});

LICENSE

This software is licensed under the MIT License.

Copyright Fedor Indutny, 2015.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Last updated on 08 Nov 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc