< Iam_Amb />
< Backend Developer />
{ World }
Crafting robust development platforms that drive innovation, speed, and reliability they need to create at the speed of inspiration.
import { NextRequest, NextResponse } from 'next/server'
import { prisma } from '@/lib/prisma'
export async function GET(request: NextRequest) {
try {
const users = await prisma.user.findMany({
select: {
id: true,
email: true,
profile: {
select: {
firstName: true,
lastName: true,
avatar: true
}
}
}
})
return NextResponse.json({
success: true,
data: users
})
} catch (error) {
return NextResponse.json({
success: false,
error: 'Failed to fetch users'
}, { status: 500 })
}
}
My most important and impactful projects
A powerful MongoDB management package with 1000+ downloads. Simplifies database operations with intuitive API.
Scalable microservices gateway with advanced routing, authentication, and monitoring capabilities.
Latest work and experiments in backend development
WebSocket-based chat system with message encryption, file sharing, and presence indicators.
Complete e-commerce API with payment processing, inventory management, and order tracking.
RESTful API for project management with team collaboration, time tracking, and reporting.
Showcase of my expertise in backend development and system architecture