Package Notifier is a simple utility that notifies users in the terminal when a package has been updated to a new version. Stay informed about the latest changes in your dependencies effortlessly.
- 🚀 Instantly receive notifications in the terminal about package updates.
- 📦 Keep track of changes in your dependencies to ensure you are always using the latest and greatest.
- 🔄 Easily integrate into your development workflow for seamless updates.
npm:
$ npm install @mgalacyber/package-notifier
yarn:
$ yarn add @mgalacyber/package-notifier
const packageNotifier = require("@mgalacyber/package-notifier");
import packageNotifier from "@mgalacyber/package-notifier";
const packageFile = require("./package.json");
packageNotifier(packageFile);
Package Notifier compares the installed versions of your project's dependencies with the latest versions available on the npm registry. If updates are found, it provides clear and concise notifications in the terminal, making it easy for you to take action.