Are you tired of digging through the inspect element console to find your precious log messages? Say hello to NotifyLog.js – the JavaScript library that brings your logs right to your screen thru notifications!
NPM link: https://www.npmjs.com/package/notif_log
notif_log.js is a JavaScript library that replaces those boring old and tedious process of checking the console.log
messages on broswer with eye-catching notifications.
- Instant Notifications: Get your log messages as browser notifications in real-time.
- Easy to Use: A simple and intuitive npm pack that anyone can use.
- Customizable: Customize the appearance and behavior of your notifications.
- Cross-Browser Support: Works seamlessly on all modern browsers.
Install notif_log.js using npm:
npm i notif_log
- include notif_log.js
- Initialise with logger.init()
Using notif_log.js is as easy as pie! Replace your console.log with the below and watch the magic happen.
- Initialises the logger
logger.init()
- Logs the message via a Desktop Notification only
logger.log()
- Logs the message via a Desktop Notification and in the browser console
console.log()
- Reverts console.log to original functionality
logger.destroy()