Akash YadavAkash Yadav
Open to new opportunitiesBangalore / ISTv8.0 of this siteLast shipped: recently

Full-Stack engineer who ships

Building production-grade SaaS products using Next.js, NestJS, Go, and modern cloud-native tooling. 3+ years shipping at scale — from 400k-record inventory platforms to multi-tenant social publishing systems.

Years building
3+
Projects shipped
15+
Production SaaS built
3
Vehicle records managed
400K+
01/Selected Work

Things I've shipped
that are still running.

02/How I Think

A small thing,
written carefully.

The component is the contract.

I design TypeScript interfaces before writing any implementation. If the shape is wrong, no amount of clever code can save the feature. If the shape is right, even a rough first pass tends to hold together.

Below is a condensed version of the post entity type from PostQueue, my multi-tenant publishing SaaS.

post.entity.ts
typescript
 1// Shape first, implementation second.
 2interface Post {
 3  id: string;
 4  workspaceId: string;
 5  platforms: Platform[];
 6  scheduledAt: Date;
 7  status: 'draft' | 'pending' | 'live';
 8}
 9
10type Platform =
11  'twitter' | 'instagram' | 'linkedin'
12  | 'tiktok' | 'youtube' | 'bluesky';
03/Latest Writing

Notes on building.

Got something worth building?

I'm open to new opportunities. Best fit: product-focused teams where I can own a meaningful slice of the stack — frontend, API, or both. Happy to talk full-time roles or contract.

akashyadav171156@gmail.com
LinkedIn
akash-yadav