Calime is a versatile and lightweight class for styling and manipulating text in Node.js applications, particularly useful for console output. It offers a range of text styling options, such as color, background color, and text formatting styles like bold, underline, and italic.
::: tip
While Calime provides various styling options, it aims to keep a balance between functionality and simplicity. For complex text and background color combinations, consider using libraries like chalk for more complete solutions. Calime may choose to skip adding such complex features to maintain code simplicity.
::::
- Multiple Text Styles: Apply various text styles including bold, underline, italic, and more.
- Color Support: Easily set text and background colors.
- Text Gradients: Create gradient effects on text using multiple colors.
- Chainable Methods: Methods can be chained for concise code.
calime is available as an independent package on npm and can be installed in your Node.js project. Since it is exclusively an ESModule, ensure your environment supports ESModule syntax. To install calime, run the following command in your project directory:
npm install calimeTo use Calime, first import or include it in your Node.js project. Then, create a new instance of Calime and start styling your text.
import Calime from 'calime'; // Adjust the import path as per your project structure
const myText = new Calime("Hello, World!");
myText.apply('bold').color([255, 0, 0]); // Applying bold style and red color
console.log(myText.render()); // Outputs styled textCalime(text: string)- Initialize with the specified text.
apply(style: Style): Calime- Apply a text style.setText(text: string): Calime- Set or update the text.color(color: Color): Calime- Set the text color.gradient(...colors: Color[]): Calime- Apply a gradient effect to the text.background(color: Color): Calime- Set the background color of the text.render(): string- Returns the styled text.
static gradientColor(ratio: number, ...colors: Color[]): Color- Compute gradient color.
Calime is open-sourced MIT license and can be used freely in your projects.
