0.1.1 • Published 1 month ago

web-streams-nodejs v0.1.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 month ago

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);
0.1.1

1 month ago

0.1.0

1 month ago