🚀 logger-logs is a powerful yet lightweight logging utility for JavaScript and Node.js. It helps developers debug applications efficiently by logging messages with the file path, line number, and formatted content.
🔹 Perfect for debugging & error tracking
🔹 Supports structured logging (JSON, objects, arrays, etc.)
🔹 Zero configuration—just import and log
✅ File Path & Line Number – Find exactly where logs originate.
✅ Supports Objects & Arrays – Structured, easy-to-read logs.
✅ Error-Safe – Prevents logging issues from breaking your app.
✅ Minimal Overhead – Keeps performance optimized.
✅ Simple API – Just call logger(...)
.
Install via npm:
npm install logger-logs
Or add it manually to your package.json
:
"dependencies": {
"logger-logs": "^1.0.1"
}
import { logger } from "logger-logs";
logger("Hello, world!");
📝 Output:
Path:: /path/to/file.js, Line:: 5, Message:: Hello, world!
logger({ user: "JohnDoe", role: "admin" });
📝 Output:
Path:: /path/to/file.js, Line:: 6, Message:: {
"user": "JohnDoe",
"role": "admin"
}
logger("User details:", { id: 123, name: "Alice" });
📝 Output:
Path:: /path/to/file.js, Line:: 7, Message:: User details: {
"id": 123,
"name": "Alice"
}
The logger automatically captures file path and line numbers, but you can extend its behavior using wrappers.
Example:
function debugLogger(message) {
logger(`[DEBUG] ${message}`);
}
debugLogger("API response received");
✔️ Beginner-Friendly – No setup required.
✔️ Optimized for Debugging – Track errors easily.
✔️ Minimal & Lightweight – No unnecessary dependencies.
✔️ Works in JavaScript & TypeScript – Node.js & Browser support.
For full documentation, visit:
📌 GitHub Repo → logger-logs
Want to improve this package? Feel free to fork the repo, make your changes, and submit a pull request.
🔹 Found a bug? Report it here: Issues
🔹 Need help? Reach out via Email
This package is open-source under the ISC License.
🚀 Install logger-logs
now and simplify debugging in your JavaScript & Node.js apps! 🚀