
Product
Rubygems Ecosystem Support Now Generally Available
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
@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 4,240 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.
Product
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
Research
The Socket Research Team investigates a malicious npm package that appears to be an Advcash integration but triggers a reverse shell during payment success, targeting servers handling transactions.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.