web-streams-nodejs

0.1.1 • Public • Published

web-streams-nodejs

forked from https://github.com/gwicke/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 web-streams-nodejs

Usage

// ES5 require syntax
var webStreams = require('web-streams-nodejs');
var ReadableStream = webStreams.ReadableStream;
var toWebReadableStream = webStreams.toWebReadableStream;
var toNodeReadable = webStreams.toNodeReadable;

// ES6 import syntax
import { ReadableStream, toWebReadableStream, toNodeReadable } from "web-streams-nodejs";

// 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 web-streams-nodejs

Weekly Downloads

2

Version

0.1.1

License

Apache-2.0

Unpacked Size

134 kB

Total Files

7

Last publish

Collaborators

  • hzongquan