A clean and simple logging utility for Node.js applications.
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.
-
✨ Types: Supports four different log types:
log(default)errorwarningsuccess
-
⚙️ Options: different options to customize your logs:
filled- adds a filled color for the log.
Note
More options wil be added soon.
To install primebit.js, you can do the following:
npm install primebit.jsconst p = require("primebit.js")
p.log("Hello World!", {
options: {
filled: true
}
});