A platform where regional makers sell directly — no middlemen, no 40% cut.
The problem was simple: makers in Fergana and Khorezm produce excellent work but sell through resellers, losing nearly half the revenue.
We built a marketplace where a seller signs up in five minutes from a phone, and product photos are processed automatically — no Photoshop, no designer.
We treated slow connections as a first-class requirement: the catalogue loads in a second even on 3G, with cards streaming in as you scroll.
In the first six months over nine hundred sellers signed up.
How it's built
A fragment of the project's real code — so you can see what's inside.
TypeScript
type Bucket = { count: number; resetAt: number };const buckets = new Map<string, Bucket>();/** * Ограничение частоты запросов. * Защищает формы от перебора и спама. */export function rateLimit( key: string, limit = 8, windowMs = 60_000,): RateLimitResult { const now = Date.now(); const bucket = buckets.get(key); // Окно истекло или его не было — начинаем заново. if (!bucket || bucket.resetAt < now) { buckets.set(key, { count: 1, resetAt: now + windowMs }); return { ok: true, remaining: limit - 1, retryAfter: 0 }; } if (bucket.count >= limit) { return { ok: false, remaining: 0, retryAfter: Math.ceil((bucket.resetAt - now) / 1000), }; } bucket.count += 1; return { ok: true, remaining: limit - bucket.count, retryAfter: 0 };}Get in touch
Project request
Fill in the form — we'll discuss scope and timing.
Next project
Shifo — booking a doctor without phone calls