notifyx-dashboard
v1.0.0
Published
Plug-and-play NotifyX dashboard for Express.js apps.
Readme
NotifyX Dashboard Plugin
This package allows you to plug in the NotifyX dashboard into any Express.js application.
🚀 Installation
npm install notifyx-dashboard🔌 Usage in Express
const express = require('express');
const { createNotifyXRouter } = require('notifyx-dashboard');
const app = express();
app.use('/notifyx', createNotifyXRouter());
app.listen(3000, () => {
console.log('Dashboard ready at http://localhost:3000/notifyx');
});