What is anser?
The 'anser' npm package is a library that allows you to convert ANSI escape codes into HTML. This is particularly useful for rendering terminal output in web applications, where you want to preserve the color and style formatting.
What are anser's main functionalities?
Convert ANSI to HTML
This feature allows you to convert a string containing ANSI escape codes into an HTML string with equivalent styling. The example converts a red-colored 'Hello, World!' from ANSI to HTML.
const anser = require('anser');
const ansiString = '\u001b[31mHello, World!\u001b[0m';
const htmlString = anser.toHtml(ansiString);
console.log(htmlString); // Outputs: <span style="color:#E34C26;">Hello, World!</span>
Strip ANSI codes
This feature allows you to strip ANSI escape codes from a string, leaving just the plain text. The example removes the red color formatting from 'Hello, World!'.
const anser = require('anser');
const ansiString = '\u001b[31mHello, World!\u001b[0m';
const plainString = anser.ansiToText(ansiString);
console.log(plainString); // Outputs: Hello, World!
Escape for HTML
This feature escapes HTML special characters in a string containing ANSI escape codes. The example converts '<' and '>' to their HTML entities.
const anser = require('anser');
const ansiString = '\u001b[31mHello, <World>!\u001b[0m';
const escapedHtmlString = anser.escapeForHtml(ansiString);
console.log(escapedHtmlString); // Outputs: \u001b[31mHello, <World>!\u001b[0m
Other packages similar to anser
chalk
Chalk is a popular library for styling terminal strings in Node.js. Unlike 'anser', which focuses on converting ANSI codes to HTML, Chalk is primarily used for creating styled terminal output. It supports various styles and colors but does not provide HTML conversion.
ansi-to-html
The 'ansi-to-html' package is similar to 'anser' in that it converts ANSI escape codes to HTML. However, 'anser' offers more features like stripping ANSI codes and escaping for HTML, making it a more versatile choice for handling ANSI codes.
strip-ansi
The 'strip-ansi' package is a simple utility for removing ANSI escape codes from strings. While it performs a similar function to 'anser's' ansiToText method, it lacks the additional features like HTML conversion and escaping.
anser
A low level parser for ANSI sequences.
:rocket: Features
- Converts text containing ANSI color escape codes into equivalent HTML elements.
- Allows converting the input into JSON output.
- HTML escaping
- Converts links into HTML elements
- Friendly APIs to use with virtual dom libraries
:cloud: Installation
npm install --save anser
yarn add anser
:clipboard: Example
const Anser = require("anser");
const txt = "\u001b[38;5;196mHello\u001b[39m \u001b[48;5;226mWorld\u001b[49m";
console.log(Anser.ansiToHtml(txt));
console.log(Anser.ansiToHtml(txt, { use_classes: true }));
console.log(Anser.ansiToJson(txt));
When using TypeScript you can do the following:
import * as Anser from 'anser';
const txt = "\u001b[38;5;196mHello\u001b[39m \u001b[48;5;226mWorld\u001b[49m";
console.log(Anser.ansiToHtml(txt));
:question: Get Help
There are few ways to get help:
- Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
- For bug reports and feature requests, open issues. :bug:
- For direct and quick help, you can use Codementor. :rocket:
:memo: Documentation
Anser.escapeForHtml(txt)
Escape the input HTML.
This does the minimum escaping of text to make it compliant with HTML.
In particular, the '&','<', and '>' characters are escaped. This should
be run prior to ansiToHtml
.
Params
- String
txt
: The input text (containing the ANSI snippets).
Return
Anser.linkify(txt)
Adds the links in the HTML.
This replaces any links in the text with anchor tags that display the
link. The links should have at least one whitespace character
surrounding it. Also, you should apply this after you have run
ansiToHtml
on the text.
Params
- String
txt
: The input text.
Return
Anser.ansiToHtml(txt, options)
This replaces ANSI terminal escape codes with SPAN tags that wrap the
content.
This function only interprets ANSI SGR (Select Graphic Rendition) codes
that can be represented in HTML.
For example, cursor movement codes are ignored and hidden from output.
The default style uses colors that are very close to the prescribed
standard. The standard assumes that the text will have a black
background. These colors are set as inline styles on the SPAN tags.
Another option is to set use_classes: true
in the options argument.
This will instead set classes on the spans so the colors can be set via
CSS. The class names used are of the format ansi-*-fg/bg
and
ansi-bright-*-fg/bg
where *
is the color name,
i.e black/red/green/yellow/blue/magenta/cyan/white.
Params
- String
txt
: The input text. - Object
options
: The options passed to the ansiToHTML method.
Return
Anser.ansiToJson(txt, options)
Converts ANSI input into JSON output.
Params
- String
txt
: The input text. - Object
options
: The options passed to the ansiToHTML method.
Return
Anser.ansiToText(txt)
Converts ANSI input into text output.
Params
- String
txt
: The input text.
Return
Anser()
The Anser
class.
Return
setupPalette()
Sets up the palette.
escapeForHtml(txt)
Escapes the input text.
Params
- String
txt
: The input text.
Return
- String The escpaed HTML output.
linkify(txt)
Adds HTML link elements.
Params
- String
txt
: The input text.
Return
- String The HTML output containing link elements.
ansiToHtml(txt, options)
Converts ANSI input into HTML output.
Params
- String
txt
: The input text. - Object
options
: The options passed ot the process
method.
Return
ansiToJson(txt, options)
Converts ANSI input into HTML output.
Params
- String
txt
: The input text. - Object
options
: The options passed ot the process
method.
Return
ansiToText(txt)
Converts ANSI input into HTML output.
Params
- String
txt
: The input text.
Return
process(txt, options, markup)
Processes the input.
Params
- String
txt
: The input text. - Object
options
: An object passed to processChunk
method, extended with: json
(Boolean): If true
, the result will be an object.use_classes
(Boolean): If true
, HTML classes will be appended to the HTML output.- Boolean
markup
:
processChunkJson(text, options, markup)
Processes the current chunk into json output.
Params
- String
text
: The input text. - Object
options
: An object containing the following fields: json
(Boolean): If true
, the result will be an object.use_classes
(Boolean): If true
, HTML classes will be appended to the HTML output.- Boolean
markup
: If false, the colors will not be parsed.
Return
- Object The result object:
content
(String): The text.fg
(String|null): The foreground color.bg
(String|null): The background color.fg_truecolor
(String|null): The foreground true color (if 16m color is enabled).bg_truecolor
(String|null): The background true color (if 16m color is enabled).clearLine
(Boolean): true
if a carriageReturn \r was fount at end of line.was_processed
(Bolean): true
if the colors were processed, false
otherwise.isEmpty
(Function): A function returning true
if the content is empty, or false
otherwise.
processChunk(text, options, markup)
Processes the current chunk of text.
Params
- String
text
: The input text. - Object
options
: An object containing the following fields: json
(Boolean): If true
, the result will be an object.use_classes
(Boolean): If true
, HTML classes will be appended to the HTML output.- Boolean
markup
: If false, the colors will not be parsed.
Return
- Object|String The result (object if
json
is wanted back or string otherwise).
:yum: How to contribute
Have an idea? Found a bug? See how to contribute.
:sparkling_heart: Support my projects
I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously,
this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).
However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:
-
Starring and sharing the projects you like :rocket:
-
—I love books! I will remember you after years if you buy me one. :grin: :book:
-
—You can make one-time donations via PayPal. I'll probably buy a coffee tea. :tea:
-
—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).
-
Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6
Thanks! :heart:
:cake: Thanks
This project is highly based on ansi_up
, by @drudru. Thanks! :cake:
:dizzy: Where is this library used?
If you are using this library in one of your projects, add it in this list. :sparkles:
react-native
react-native-windows
ansi-to-react
mesh-devtool
@next/react-dev-overlay
nuclide-commons-ui
transformime
@viankakrisna/react-dev-utils
react-webpack-build-helper
redux-devtools-trace-monitor
ansi-to-json
@axio/react-dev-utils
react-error-overlay-dangerous
timer-react-dev-utils
react-dev-utils-extra
ansi-html-themed
uyun-react-dev-utils
react-dev-utils-sebfl-update
@jjavery/react-error-overlay
lambda-dev-utils
react-error-overlay-canary
@classflow/react-dev-utils
nuclide
react-native-okhttp-fork
@devpodio/console
ipynb2html
ipynb2html-fix
@theia/console
react-native-macos
webpack-isomorphic-dev-middleware
@ehyland-org/react-error-overlay
stack-frame-overlay
cycle-dev-utils
@viankakrisna/react-error-overlay
callstack-task-react-error-overlay
callstack-task-react-dev-utils
ansi-to-react-with-options
@plansys/react-dev-utils
zc-react-dev-utils
react-dev-utils-custom-hmr
ansi-to-react-with-classes
linklog
@naze/error
react-error-guard
singularityui-tailer
@unforgiven/react-native
@digibear/socket-bridge
ada-pack
react-native-hlf-wrapper
webpack-universal-compiler
@prague-digi/react-error-overlay
@apardellass/react-native-audio-stream
react-native-plugpag-wrapper
@codewars/jest-reporter
react-native-tvos
@proteria/react-scripts
kunai
@office-iss/react-native-win32
react-ansi
react-native-pulsator-native
:scroll: License
MIT © Ionică Bizău