This is a persistent notification system that allows for managing notifications across multiple instance with synchronization and persistance across page reloads.
- ✅ Display and manage notifications (success, error, info)
- ✅ Persist notifications across page reloads (using localStorage)
- ✅ Support multiple instance of notification widget, all synchronized
- ✅ Namespace support for different notification contexts
- ✅ Unread notification counter
- ✅ Clean, responsive Ui with TailwindCSS
After cloning the repository, you need to install all the necessary dependency:
npm installRun the dev server for your app, use:
npm run devRun linter:
npm run lintRun unit test:
npm run test:unitCreate a production bundle:
npm run build