primebit.js
v1.3.4-v2
Published
A tool that makes logging look cool.
Readme
primebit.js
A clean and simple logging utility for Node.js applications.
Table of Contents
Introduction
What is primebit? primebit.js is an npm package that gives users the ability to log things in a clean way! It provides developers with an efficient way to log messages in their Node.js applications, offering multiple log types and customization options to enhance your logging experience.
Features
✨ Types: Supports four different log types:
log(default)errorwarningsuccess
Miscellaneous
⚙️ Options: different options to customize your logs:
filled- adds a filled color for the log.
[!NOTE]
More options wil be added soon.
Installation
To install primebit.js, you can do the following:
npm install primebit.jsExample
const p = require("primebit.js")
p.log("Hello World!", {
options: {
filled: true
}
});