Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@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 721 weekly downloads. As such, @stardazed/streams-text-encoding popularity was classified as not 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.