A cloud-native, multi-tenant SaaS platform that allows franchises to launch their own branded academies. Features microservices architecture, 99.99% uptime, and automated WhatsApp integration.
Edu NexaLearn transforms a static, manual education business into a dynamic SaaS powerhouse. It enables the client to franchise their curriculum to hundreds of partners, each with their own isolated, branded platform running on a shared, scalable infrastructure.
The client was stuck with a manual system dependent on WhatsApp groups, limiting growth. High traffic caused server crashes, and launching new branches required expensive manual setup.
Architected a Microservices-based SaaS platform using Kubernetes for auto-scaling and a Multi-Tenant database strategy for data isolation.
We discovered that students ignored emails but lived on WhatsApp. By reverse-engineering the WhatsApp Web protocol (before the official API), we built a bot that sent class links directly to their phones, increasing attendance by 300%.
export function tenantMiddleware(req, res, next) {
const host = req.headers.host;
const tenantId = getTenantFromHost(host);
if (!tenantId) throw new Error('Tenant not found');
// Inject tenant context into request scope
req.tenantId = tenantId;
next();
}This critical piece of middleware identifies which franchise is being accessed based on the subdomain, ensuring complete data isolation between thousands of academies running on the same server.
Mapped out the franchise model and data isolation requirements.
Designed the Kubernetes cluster and microservices topology.
Built the core LMS features and the multi-tenant resolver.
Developed the custom bot for automated student communication.
Simulated 1M+ users to tune auto-scaling policies.






A high-performance, enterprise-grade digital agency platform designed to bridge the gap between complex technical solutions and business growth. Features a custom-built content management system and automated dual-notification email system.
A production-ready blogging platform with gamification (XP, Badges), built-in wallet for monetization, and AI-powered search. Features team collaboration and RBAC.