🔔 Notix – Powerful & Flexible Reminder Scheduler
Notix হলো একটি কাস্টম বিল্ড করা, দ্রুত ও প্রফেশনাল reminder system NPM প্যাকেজ, যেটা দিয়ে তুমি Email, schedule করতে পারো – সম্পূর্ণভাবে তোমার নিজের কোড নিয়ন্ত্রণে।
এটা তৈরি করা হয়েছে zero-dependency mindset এবং modern ESM + CJS dual build সাপোর্ট নিয়ে।
🚀 Features
- ✅ Custom-built scheduler
- 📦 Dual format support: CommonJS (CJS) + ECMAScript Module (ESM)
- 📧 Email reminder support (via nodemailer)
- 🕒 Flexible time-based job scheduling
- 💡 Beginner-friendly API design
📦 Installation
npm install sendix
yarn add sendix
bun add sendix
// ESM import
import { sendix } from 'notix';
// Or for CommonJS
// const { sendix } = require('notix');
// Add a reminder
sendix({
type: "once",
schedule: [2025, 12, 19, 5, 30, 0, 0],
mail: {
auth: {
user: "authergmail@gmail.com",
pass: "app-password",
},
from: 'yourgmail@gmail.com',
to: "example@gmail.com",
subject: "Sendix",
message: "Hello from Sendix!",
html: "<h1>hellow world!</h1>",
});