← All case studies
EdTech · SaaSLive Product

Progsity

A full-stack coding-education SaaS we built — and still operate

progsity.io/judge/solve
function solve(input) {
const n = parseInt(input);
let result = [];
for (let i = 2;i <= n; i++) {
if (isPrime(i))
result.push(i);
}
return result;
}
Accepted·Runtime 42ms·Memory 8.1MB

A complete coding-education platform: course selling, secure exams, a multi-language coding playground and a competitive-programming judge — serving web and mobile learners from a single codebase.

The Challenge

Selling programming courses through third-party platforms meant high recurring fees, no control over the exam experience, and hard feature walls: no way to run a real coding playground, no competitive-programming judge, and no unified mobile experience.

The product needed everything those platforms could not offer — secure timed exams, in-browser code execution, automatic grading against test cases, and video delivery — in one system that a small team could operate.

Our Solution

We designed and built Progsity as a single unified platform instead of a patchwork of services. One codebase drives the web app, the instructor tooling and the native mobile apps, so every feature ships to all surfaces at once.

The hardest problems were solved in-house: a sandboxed code-execution service powers both the playground and the judge; the exam engine enforces time limits and integrity controls; and video lessons stream through a CDN-backed pipeline. Payments, analytics and revenue reporting close the loop for instructors.

What We Built
  • Course selling with digital product marketplace
  • Quiz & exam maker with time limits and anti-cheat controls
  • Online coding playground with multi-language support
  • Online judge with automatic grading for competitive programming
  • iOS & Android apps with full feature parity
  • Instructor dashboard with analytics and revenue tracking
The Results

Progsity is live, growing, and operated by the same team that built it — which means every architectural decision has been tested against real production traffic, real students and real exam sessions.

Zero platform fees, full ownership of the roadmap, and a feature set — judge, playground, proctored exams — that the third-party platforms it replaced still don't offer.

Project Impact
6+
Core modules
2
Platforms (web + mobile)
100%
Custom built
$0
Recurring platform fees
Next case study
Madrasa Education Board System

A board-level education platform, wireframe to production in five weeks