node-web-streams

0.2.2 • Public • Published

node-web-streams

WhatWG web streams and conversion utilities for node.js

This provides the WhatWG streams API for node. It leverages the WhatWG reference implementation, but also addresses performance issues in that implementation.

Installation

npm install node-web-streams

Usage

// ES5 require syntax
var webStreams = require('node-web-streams');
var ReadableStream = webStreams.ReadableStream;
var toWebReadableStream = webStreams.toWebReadableStream;
var toNodeReadable = webStreams.toNodeReadable;
 
// ES6 import syntax
import { ReadableStream, toWebReadableStream, toNodeReadable } from "node-web-streams";
 
// Convert a node Readable to a web ReadableStream & back
const nodeReadable = require('fs').createReadStream('/tmp/test.txt');
const webReadable = toWebReadableStream(nodeReadable);
const roundTrippedNodeReadable = toNodeReadable(webReadable);

Package Sidebar

Install

npm i node-web-streams

Weekly Downloads

1,156

Version

0.2.2

License

Apache-2.0

Last publish

Collaborators

  • gwicke