Skip to content

2021-07-14, Version 16.5.0 (Current), @targos

Compare
Choose a tag to compare
@targos targos released this 14 Jul 09:15
v16.5.0
eaca13d

Notable Changes

Experimental Web Streams API

Node.js now exposes an experimental implementation of the
Web Streams API.

While it is experimental, the API is not exposed on the global object and is only
accessible using the new stream/web core module:

import { ReadableStream, WritableStream } from 'stream/web';
// Or from 'node:stream/web'

Importing the module will emit a single experimental warning per process.

The raw API is implemented and we are now working on its integration with
various existing core APIs.

Contributed by James M Snell - #39062

Other notable changes

Commits