Web and mobile developer in Rennes with 5 years of experience. I can take charge of your project independently or join your team for the duration of a mission.
Over the past five years, I have worked in various areas of the web, including project management, marketing, functional analysis, and interface design. These diverse roles have highlighted my adaptability, which is now one of my greatest strengths. Through these experiences, I have tested and strengthened my ability to create from scratch. I now focus on programming as it aligns with my passion for new technologies.
Vue.js
Nuxt
Node.js
Bun.sh
TypeScript
SQLite
MongoDB
Flutter
Ionic
Git
Docker
Here are the steps we will follow:
1.We define the scope of the project.
2.I send you a proposal.
3.I develop, test, and deploy the project.
4.I provide maintenance and updates.
import { ref, onMounted, onUnmounted } from 'vue';
const x = ref(0);
const y = ref(0);
function update(event) {
x.value = event.pageX;
y.value = event.pageY;
}
onMounted(() => window.addEventListener('mousemove', update));
onUnmounted(() => window.removeEventListener('mousemove', update));
<template>Mouse position is at: {{ x }}, {{ y }}</template>