
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@stardazed/streams-text-encoding
Advanced tools
Implementation of text encoder and decoder streams
This package provides an implementation of the TextEncoderStream
and TextDecoderStream
types from the Encoding Standard.
⚠️ Important: this is NOT a polyfill. The classes are just normal exports.
👉 If you want an all-in-one polyfill for streams, fetch interop and text encoding streams, use the ⭐️Stardazed streams polyfill⭐️!
npm install @stardazed/streams-text-encoding
pnpm install @stardazed/streams-text-encoding
yarn add @stardazed/streams-text-encoding
import { TextEncoderStream, TextDecoderStream } from "@stardazed/streams-text-encoding";
// encode
const textReadable = /* Get a readable stream that produces string chunks */;
textReadable
.pipeThrough(new TextEncoderStream()) // no options available
.pipeTo(byteWritable);
// decode
const byteReadable = /* Get a readable stream that produces binary chunks */;
const decoder = new TextDecoderStream(encoding, options);
byteReadable
.pipeThrough(decoder)
.pipeTo(textWritable);
The options passed to the TextDecoderStream are identical to those passed to the
TextDecoder
class. See MDN's docs
for more.
© 2018 by Arthur Langereis - @zenmumbler
MIT
FAQs
Implementation of text encoder and decoder streams
The npm package @stardazed/streams-text-encoding receives a total of 1,668 weekly downloads. As such, @stardazed/streams-text-encoding popularity was classified as popular.
We found that @stardazed/streams-text-encoding demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.