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.
@ccheever/crayon
Advanced tools
crayon - Add colors to text on your terminal. A faster replacement for chalk that also adds 256 color support
=====
A very fast, clean, and flexible way to use ANSI colors on your terminal. Crayon supports 256 colors, a clean and chainable API, a few other nifty features, and built-in logging.
It works as a drop-in replacement for chalk, but is much faster (~20x) and has additional features. Like chalk, it doesn't monkeypatch the String
prototype the way that the popular colors module does.
var crayon = require('crayon');
// Log a string
crayon.red.log('This is red');
// Style a string
console.log(crayon.blue('Hello world!'))
// Use any CSS color name
crayon.olivedrab.bgOldlace.info("cute");
// Use hex colors
crayon("#ffcc00").log("old gold");
// Use ANSI color codes
crayon(100).log("look at me");
// Combine styled and normal strings
console.log( crayon.blue('Hello'), 'World' + crayon.red('!') );
// Compose multiple styles using the chainable API
console.log( crayon.blue.bgRed.bold('Hello world!') );
// Or just compose styles by passing strings to the crayon function
crayon('red bgblue').log('this is red on a blue background');
// Nest styles
console.log( crayon.red('Hello', crayon.underline.bgBlue('world') + '!') );
// Pass in multiple arguments
crayon.blue.info('Hello', 'World!', 'Foo', 'bar', 'biz', 'baz');
// Specify multiple styles
crayon("goldenrod", "bg:blue", "inverse").underline.log("Hi!");
// Specify foreground and background colors
crayon.foreground("#ffffff").background("crimson").log("school!");
crayon.fg("navy").bg("#ffcc00").log("spirit!");
crayon.fgbg("white", "red").underline.error("whew");
crayon.red._("background:goldenrod").inverse.log("goldenrod on red");
// Specify a custom logger
crayon.logger = require('npmlog');
For color descriptions passed to functions, you can use any of the following:
crayon.red
will give you the system color and crayon.red_
will give you the CSS color.bg:<color>
or background: <color>
or bg<Color>
or similar, etc. to change the background color.FAQs
crayon - Add colors to text on your terminal. A faster replacement for chalk that also adds 256 color support
The npm package @ccheever/crayon receives a total of 1,213 weekly downloads. As such, @ccheever/crayon popularity was classified as popular.
We found that @ccheever/crayon 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.