@checkem123/custom-console
v1.0.0
Published
A customizable console logger with styled logs, errors, and exceptions.
Downloads
2
Maintainers
Readme
Custom Console
Custom Console is a customizable logger that replaces the browser's default console with a styled debugging panel.
Features
- Styled logs, errors, and exceptions.
- Automatically displays JSON objects with nested formatting.
- Easy to integrate into any JavaScript project.
Installation
Install using npm:
npm install custom-consoleUsage
import customConsole from "./customConsole.js";
customConsole.setupCustomConsole();
// Example usage
console.log({ name: "Alice", age: 25 });
console.error("This is an error message");
throw new Error("This is an exception");
