Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@santi100/coloring-lib
Advanced tools
Santi's Coloring Library: Make your text look really cool!
This is a coloring library that uses ANSI sequences to color text on a terminal. Be aware there might be bugs hidden in this code. Pull requests and issues are welcome!
Wanna contribute? File an issue or pull request! Make sure you follow the contribution Code of Conduct.
npm install @santi100/coloring-lib
yarn add @santi100/coloring-lib
pnpm install @santi100/coloring-lib
The coloring
function is a deprecated alias for the colorize
function.
Use colorize
instead.
colorize(str: string, color: ColorOrEffect): string;
NEW!
Color str
with color color
.
Parameter | Type | Description |
---|---|---|
str | string | The string to paint in color. |
color | ColorOrEffect | The color to paint the string in. |
Returns a string of the colored text.
colorize(str: string, colors: ArrayOfColorsOrEffects): string;
NEW!
Color str
with colors colors
.
Parameter | Type | Description |
---|---|---|
str | string | The string to paint in color. |
colors | ArrayOfColorsOrEffects | The colors to paint the string in. |
Returns a string of the colored text.
rainbowify(str: string): string;
NEW!
Colors str
in a rainbow pattern.
Parameter | Type | Description |
---|---|---|
str | string | The string to paint in color. |
Returns a string of the rainbow colored text.
function colorizeTemplate(template: string): string;
NEW!
Fills template
, given that it is a template like this:
text %color,effect(more text) and more text
Parameter | Type | Description |
---|---|---|
template | string | The template string to fill. |
Returns the template string with all placeholders replaced with the correct colors or effects.
class Colorizer
: This is a colorizer object class.
Its instance methods are called the same as the colors/effects, and you can chain them.
To convert the object to a string, call the Colorizer.prototype.toString()
method.
Colorizer.prototype.resolve()
is a deprecated alias for Colorizer.prototype.toString()
.
Use Colorizer.prototype.toString()
instead.
The Coloring
class is a deprecated alias for the Colorizer
class.
Use Colorizer
instead.
type Color = 'black' | 'red' | 'green' | 'yellow' | 'blue' | 'magenta' | 'cyan' | 'white';
A color to paint a string in.type Effect = 'bold' | 'blink' | 'conceal' | 'italic' | 'underline';
An effect you can give to a string.
NEW! Italic and underline were introduced in version 1.1.2.type ColorOrEffect = Color | Effect;
A valid color or effect.type ArrayOfColorsOrEffects = ColorOrEffect[];
An array of valid colors or effects.*Hasn't been tested in an actual ES3 environment. Feel free to open an issue or pull request if you find any non-ES3 thing. See "Contribute" for instructions on how to do so.
^The source code is about 2 kilobytes.
Version 1.1.2
italic
and underline
.colorize
, colorizer
, colorize-template
, core
, rainbowify
).rainbowify
and colorizeTemplate
functions!FAQs
Santi's Coloring Library: Make your text look really cool!
We found that @santi100/coloring-lib 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.