I'm a Full Stack Junior Developer from Switzerland with 1 year of professional experience.
Here are some of the projects I worked on in the past.
My own Saas: A developer-friendly platform for embedding lightweight analytics, SEO, speed insights, and revenue tracking into your applications.
2sxc is revolutionizing content management on DNN and Oqtane with the 1-second-paradigm. Every interaction takes less than 1 second. As part of an internship, I contributed to the development of this CMS.
SchoolSys is a system designed to help daycares in Arusha (Tanzania) and Cape Town (South Africa) teach children using modern methods to empower young children. For my final exam project, I developed material management system for the App.
Here are some of the main technologies I work with.
Here are some of the events I attended recently.
Build a Desktop App with Electron, React, Vite, and TypeScript • Mar 12, 2026
Modern web tooling makes it surprisingly easy to build cross-platform desktop apps. By combining Electron, React, Vite, and TypeScript, you can create fast desktop applications using familiar web technologies.
In this guide, we’ll start with a fresh Vite React project and turn it into an Electron desktop app step by step.
1. Create the Vite Project First create a new Vite React + TypeScript project (or any other framework you want):
npm create vite@latest my-electron-app At this point your package.json looks like this:
{ "name": "logier", "private": true, "version": "0.0.0", "type": "module", "scripts": { "dev": "vite", "build": "tsc -b && vite build", "lint": "eslint .", "preview": "vite preview" }, "dependencies": { "react": "^19.2.0", "react-dom": "^19.2.0" }, "devDependencies": { "@eslint/js": "^9.39.1", "@types/node": "^24.10.1", "@types/react": "^19.2.7", "@types/react-dom": "^19.2.3", "@vitejs/plugin-react": "^5.1.1", "eslint": "^9.39.1", "eslint-plugin-react-hooks": "^7.0.1", "eslint-plugin-react-refresh": "^0.4.24", "globals": "^16.5.0", "typescript": "~5.9.3", "typescript-eslint": "^8.48.0", "vite": "^7.3.1" } } 2. Install Electron and Helper Tools Now install Electron and a few tools that make development smoother.
npm install electron concurrently wait-on cross-env These packages solve common problems:
Electron → runs the desktop application
concurren
...
Here are some stats about my contributions on GitHub.
0
Total Commits
0
Total Reviews
0
Total Issues
0
Total PRs
0
Contributed To
Here is a chart showing my commit history over the last year.