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)