Profile picture Lucas Mercier

Lucas Mercier

Full Stack Web Developer & IOS hobbyist

Marseille, France

I am Lucas Mercier, a micro-entrepreneur based in France, developing and publishing Web & mobile applications.

$ 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';

const techStack: TechStack = {
    devOps: [
        'GitHub',
        'Docker'
    ],
    frontend: [
        'Angular',
        'TypeScript',
        'TailwindCSS',
        'Markdown',
        'SwiftUI',
        'Kotlin',
        'KMM'
    ],
    backend: [
        'NestJS',
        'SpringBoot'
        'Node.js',
        'Supabase',
        'PostgreSQL',
        'MySQL',
        'S3 Storage',
        'Minio'
    ]
};

// Developer profile
const me: Developer = {
    name: 'Lucas Mercier',
    skills: [
        ...techStack.devOps,
        ...techStack.backend,
        ...techStack.frontend
    ],
    interests: [
        'Web development',
        'IOS development',
        'Clean code',
        'Three.JS',
        'Music App'
    ]
};

// Contact function
const contact = (type: ContactType): string => {
    switch (type) {
        case 'github':
            return 'https://github.com/lucas6RM';
        case 'linkedIn':
            return 'https://www.linkedin.com/in/lucas-mercier-95404056/';
        case 'email':
            return 'lucasmercier.dev@gmail.com';
        default:
            return 'Send fax.';
    }
};

Mon Activite Psy

Mon Activite Psy is a simple and efficient activity management application for psychologists subject to French regulations.

Open Project Website
Built with Astro by lucas|mercier|dev