
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
ansi-color-stream
Advanced tools
colorize a stream with ansi colors
Here we create 3 streams and interleave the colored chunks.
var through = require('through2');
var colorize = require('ansi-color-stream');
var a = through();
var b = through();
var c = through();
a.pipe(colorize('bg bright pink fg purple')).pipe(process.stdout);
b.pipe(colorize('purple')).pipe(process.stdout);
c.pipe(colorize('bg cyan fg blue')).pipe(process.stdout);
a.write('AAA');
b.write('BBB');
c.write('CCC\n');
b.write('bb');
c.write('ccc');
a.write('a\n');
var colorize = require('ansi-color-stream')
Return a transform stream that adds color
to each of the chunks. color
is a
fuzzy string name or array
that describes the color to use.
With npm do:
npm install ansi-color-stream
MIT
FAQs
colorize a stream with ansi colors
The npm package ansi-color-stream receives a total of 6 weekly downloads. As such, ansi-color-stream popularity was classified as not popular.
We found that ansi-color-stream 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.