Deno 1.19 extends web streams support
Deno 1.19, the latest version of the secure runtime for JavaScript and TypeScript, extends web stream support and introduces a deno vendor subcommand for “vendoring” dependencies.In Deno 1.19, unveiled February 17, files, network sockets, and stdio now are native web streams. With this feature, the Deno.FsFile and Deno.Conn interfaces have readable and writable properties of type ReadableStream and WritableStream respectively. This allows them to integrate nicely with other web APIs that use web streams, according to release notes.To read this article in full, please click here
Deno 1.19, the latest version of the secure runtime for JavaScript and TypeScript, extends web stream support and introduces a deno vendor
subcommand for “vendoring” dependencies.
In Deno 1.19, unveiled February 17, files, network sockets, and stdio now are native web streams. With this feature, the Deno.FsFile
and Deno.Conn
interfaces have readable
and writable
properties of type ReadableStream
and WritableStream
respectively. This allows them to integrate nicely with other web APIs that use web streams, according to release notes.