NodeTalk
Social network for devs. Real-time 1:1 chat (Socket.IO), GitHub OAuth, private profiles, follow system, Supabase avatar uploads.
Backend Developer
Node.js ecosystem. TypeScript. PostgreSQL. Clean architecture, solid APIs, no fluff.
import express from "express";
import { prisma } from "./db";
const app = express();
app.get("/api/status", (req, res) => {
res.json({
status: "operational",
uptime: process.uptime(),
});
});
app.listen(3000);
Things I've built with real backend logic.
Social network for devs. Real-time 1:1 chat (Socket.IO), GitHub OAuth, private profiles, follow system, Supabase avatar uploads.
Full-stack blog with REST API backend + two React frontends (public reader + author CMS). JWT auth, full CRUD, comments.
Where's Waldo-style game with server-side coordinate validation to prevent cheating. Percentage-based hit detection algorithm.
Session-authenticated file storage with folder organization. Passport.js, Multer, Prisma + PostgreSQL.
Phone inventory REST API with advanced filtering and full CRUD operations.
Music e-commerce backend. Product catalog, genre filtering, dynamic search, shopping cart.
Hangman-style React game. Can you save programming from Assembly?
AI recipe assistant using Hugging Face API. Get meal ideas from your ingredients.
What I work with daily.