Iam_Amb Profile Photo

< Iam_Amb />

< Backend Developer />

33 stars
1K+ downloads

Fullstack Developer for a Connected
{ World }

Crafting robust development platforms that drive innovation, speed, and reliability they need to create at the speed of inspiration.

10+
Projects
3+
Open Source
1
Package
2+
Years Exp
api/users.ts
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 })
  }
}

Pinned Projects

My most important and impactful projects

View All
Pinned
45
12
1000+
Mongo Manth

Mongo Manth

A powerful MongoDB management package with 1000+ downloads. Simplifies database operations with intuitive API.

Node.js
MongoDB
TypeScript
Pinned
78
23
500+
API Gateway Pro

API Gateway Pro

Scalable microservices gateway with advanced routing, authentication, and monitoring capabilities.

Node.js
Redis
Docker
PostgreSQL

Recent Projects

Latest work and experiments in backend development

Real-time Chat Engine

Real-time Chat Engine

1/15/2024

WebSocket-based chat system with message encryption, file sharing, and presence indicators.

Socket.io
Node.js
MongoDB
View on GitHub
E-commerce Backend

E-commerce Backend

1/10/2024

Complete e-commerce API with payment processing, inventory management, and order tracking.

Express.js
PostgreSQL
Stripe
View on GitHub
Task Management API

Task Management API

1/5/2024

RESTful API for project management with team collaboration, time tracking, and reporting.

FastAPI
Python
PostgreSQL
View on GitHub

Featured Work

Showcase of my expertise in backend development and system architecture

Enterprise Solution 1

A scalable backend solution with modern architecture and robust API design for enterprise clients.

Node.js
PostgreSQL
Docker

Enterprise Solution 2

A scalable backend solution with modern architecture and robust API design for enterprise clients.

Node.js
PostgreSQL
Docker

Enterprise Solution 3

A scalable backend solution with modern architecture and robust API design for enterprise clients.

Node.js
PostgreSQL
Docker