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.
ansi-html-stream
Advanced tools
A through-stream that converts terminal output to HTML.
$ npm install ansi-html-stream
Or, if you want to install the CLI tool:
$ [sudo] npm install -g ansi-html-stream
Take this example to pipe a log of NPM's install
command to an HTML file:
$ npm install browserify --color always 2&>1 | ansi-html > browserify.html
And an equivalent from Node:
var spawn = require('child_process').spawn
, ansi = require('ansi-html-stream')
, fs = require('fs')
var npm = spawn('npm', ['install', 'browserify', '--color', 'always'], {
cwd: process.cwd()
})
var stream = ansi({ chunked: false })
, file = fs.createWriteStream('browserify.html', 'utf8')
npm.stdout.pipe(stream)
npm.stderr.pipe(stream)
stream.pipe(file, { end: false })
stream.once('end', function() {
file.end('</pre>\n')
})
file.write('<pre>\n');
There are a few options you can pass to the stream too:
classes
: Use classes instead of inline styles for formatting.theme
: Override the styling for particular ANSI codes. See colors.js
for two examples.chunked
: Ensure that each chunk's elements are self-contained - closes any open <span>
s at the end and reopens them on the next chunk. Defaults to false.FAQs
Stream ANSI terminal output to an HTML format.
The npm package ansi-html-stream receives a total of 1,928 weekly downloads. As such, ansi-html-stream popularity was classified as popular.
We found that ansi-html-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.
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.