Skip to content
fr

Co-founder and CTO · 2017–now

GoSecure

Alban Pasquelin is co-founder and CTO of GoSecure, a public-safety platform in production since 2017 with companies, local authorities and transport operators, selected by the 2026 Propulse programme of the French Transport Innovation Agency.

import { ReactNative, React, Nodejs, Tempsrel } from '@/stack'
export function (alert: GeolocatedAlert): OperatorResponse {

GoSecure connects a person in danger to the teams who can reach them. A geolocated alert leaves the phone, carrying a photo or a video, and lands on a console where an operator receives it, assesses it and coordinates the response.

const alert = mobileApp.raise({ position: gps(), media: [photo, video] })

I designed the whole architecture, from the mobile app to the real-time backend, and have kept it in production for nine years. The hard part is not sending a message: it is guaranteeing that it arrives every single time, on a poor network, at three in the morning.

const platform = architect({ from: mobileApp, to: realtimeBackend })

The platform plugs into the systems a client already runs through APIs, and reports into management dashboards. It is deployed with companies, local authorities and transport operators, and was selected in 2026 by the Propulse programme of the French Transport Innovation Agency.

clientSystems.integrate({ via: 'api' }).report(operationDashboards)
return {
inProductionSince: 2017, /** in production since **/
yearsRunningWithout: 9, /** years running without a break **/
propulseProgramme: 2026, /** Propulse programme **/
}
}
An alert, within secondsAn alert leaves one point on the territory and propagates to the nearest responders. Each ring is an acknowledgement: the system only counts an alert as delivered once a human accepts it.

Experience