Profile picture Alessandro Zuccaro

Alessandro Zuccaro

Backend Developer

Rome, Italy

Passionate backend developer focused on creating clean, efficient, and scalable applications with a modern tech stack. Specialized in TypeScript, NestJS, Java, Spring Boot, Python and FastAPI. With the flexibility to build small web apps in React when needed.

$ npx connect
Initializing...
Ready to connect.
Waiting for contact request...
interface Developer {
    name: string;
    skills: string[];
    interests: string[];
};

interface TechStack {
    devOps: string[];
    backend: string[];
   frontend: string[];
};

type ContactType = 'github' | 'linkedIn' | 'email' | 'discord';

const techStack: TechStack = {
    devOps: [
        'GitHub',
        'AWS',
        'Google Cloud',
        'Docker'
    ],
    frontend: [
        'React',
        'JavaScript',
        'TypeScript',
        'TailwindCSS',
        'Astro'
    ],
    backend: [
        'NestJS',
        'Spring Boot',
        'FastAPI',
        'Node.js',
        'Java',
        'Python',
        'PostgreSQL',
        'MySQL',
        'MongoDB',
        'Redis'
    ]
};

// Developer profile
const me: Developer = {
    name: 'Alessandro Zuccaro.',
    skills: [
        ...techStack.devOps,
        ...techStack.backend,
        ...techStack.frontend
    ],
    interests: [
        'Open Source',
        'Security',
        'Privacy',
        'Performance',
        'Self-Hosting',
        'Networking'
    ]
};

// Contact function
const contact = (type: ContactType): string => {
    switch (type) {
        case 'github':
            return 'https://github.com/miketester10';
        case 'linkedIn':
            return 'https://www.linkedin.com/in/alessandro-zuccaro-5a8176155/';
        case 'email':
            return 'cadenza91@gmail.com';
        case 'discord':
            return 'https://discord.gg/b2AHF3AG';
        default:
            return 'Send fax.';
    }
};

Coges Test Task

A full-stack quiz application built with NestJS, React and MongoDB. It features a modular REST API, real-time quiz sessions, automatic score calculation and a responsive, user-friendly interface.

Open Project Website

Dashboard Mockup

A production-ready microservices demo built with NestJS and RabbitMQ, featuring JWT authentication, 2FA, email queues, Redis caching and a modern React dashboard with dark mode.

Open Project Website

NestJS Todo API

A NestJS project for Todo API, integrating Google OAuth 2.0 for secure authentication. Upon login, user data is stored in PostgreSQL and a JWT token is issued to access protected routes. Role-based authorization.

Open Project Website

React Pokedex

A React app that uses the PokeAPI to fetch and display information about different Pokémon. It also includes a search feature to find specific Pokémon by name. Fully responsive and mobile-friendly.

Open Project Website

MikeAI Assistant

A chatbot AI based on Google Gemini 2.0, ready to help you with anything you need. Written in TypeScript.

Open in Telegram

Crypto Alert Italia

A bot designed to set up and manage alerts for your favorite cryptocurrencies and much more. Written in Python.

Open in Telegram
© 2026 - All rights reserved.