
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
The ansi-html npm package is a utility for converting ANSI escape codes (often used for colorizing text in terminal/console output) into HTML elements. This can be particularly useful when you want to display styled console output on a web page.
Convert ANSI escape codes to HTML
This feature allows you to convert text containing ANSI escape codes for color and style into equivalent HTML with inline styles. The example code demonstrates how to convert a string with ANSI codes for red text into an HTML span element with the color set to red.
const ansiHTML = require('ansi-html');
const text = '\u001b[31mHello World\u001b[39m';
const html = ansiHTML(text);
console.log(html); // '<span style="color:#FF0000;">Hello World</span>'
Chalk is a popular npm package that allows you to style terminal text with chainable ANSI escape codes. Unlike ansi-html, which is focused on converting ANSI codes to HTML, Chalk is used to create styled terminal text directly in Node.js applications.
ansi-to-html is another npm package that converts ANSI escape codes into HTML. It provides a similar functionality to ansi-html but offers more customization options, such as setting up different color themes and handling newlines.
Colors is an npm package that adds color support to strings in the terminal. It is similar to ansi-html in that it deals with ANSI codes for colorizing text, but it does not convert them to HTML. Instead, it enhances strings to display colored output in the terminal.
An elegant lib that converts the chalked (ANSI) text to HTML.
$ npm install ansi-html
var ansiHTML = require('ansi-html');
var str = ansiHTML('[ANSI_TEXT]');
e.g.:
var chalk = require('chalk');
var str = chalk.bold.red('foo') + ' bar';
console.log('[ANSI]', str)
console.log('[HTML]', ansiHTML(str));
See complete examples under test
/ examples
directory.
ansiHTML.setColors({
reset: ['555', '666'], // FOREGROUND-COLOR or [FOREGROUND-COLOR] or [, BACKGROUND-COLOR] or [FOREGROUND-COLOR, BACKGROUND-COLOR]
black: 'aaa', // String
red: 'bbb',
green: 'ccc',
yellow: 'ddd',
blue: 'eee',
magenta: 'fff',
cyan: '999',
lightgrey: '888',
darkgrey: '777'
});
ansiHTML.reset();
var openTags = ansiHTML.tags.open;
var closeTags = ansiHTML.tags.close;
$ npm install -l
$ npm test
FAQs
An elegant lib that converts the chalked (ANSI) text to HTML.
The npm package ansi-html receives a total of 4,705,074 weekly downloads. As such, ansi-html popularity was classified as popular.
We found that ansi-html 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.