If you're building CLI tools in JavaScript or Node.js, you know how important clean and styled logging is β especially during development or for end users.
That's why I built cliplog β a minimal, dependency-free logging helper for CLI tools.
π Why cliplog?
β
Zero dependencies
β
Easy to use
β
Color-coded output
β
Clean, minimal API
β
Works seamlessly in any Node.js CLI project
π¦ Install
npm install cliplog
π How to Use
Import the function:
import { clog } from 'cliplog';
Use it like console.log, but better:
clog('Hello world!');
clog({ name: 'Alice', age: 25 });
π Feedback Welcome!
This is an early release, and Iβd love to hear your thoughts!
Feel free to open issues, suggest improvements, or contribute!
Thanks for checking it out π
Top comments (0)