npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

fleetbo-svro

v1.0.102

Published

Fleetbo manages the complete data lifecycle: from AI-assisted schema modeling (Alex AI DBA) to deterministic Edge-enforced execution and natural language intelligence (Alex AI Data Analyst).

Readme

fleetbo-svro

The Client-Side Data OS for Modern Web Apps & AI Vibe-Coding.

Fleetbo manages the complete data lifecycle: from AI-assisted schema modeling (Alex AI DBA) to deterministic Edge-enforced execution and natural language intelligence (Alex AI Data Analyst).

Like an architect drafting blueprints before construction begins, Alex AI models your business domain and spins up an instant, production-ready backend. Fleetbo delivers relational integrity, strict typing, and Edge security to MongoDB Atlas without writing a single line of backend boilerplate.

Why Fleetbo?

100% Frontend Focus: Zero servers, zero ORMs, and zero SQL migrations. Build full-stack applications purely from the client. AI Agent Accelerator: Eliminates hallucinations and cuts token usage by 90% via deterministic contracts (svro.schema.json, svro.workflow.json). Agents (Cursor, Lovable, Windsurf) focus 100% of their reasoning on UX. Deterministic Edge Gatekeeper: Sub-millisecond $O(1)$ schema validation at the cloud edge before writes hit MongoDB Atlas. Zero-Crash Native Web Components: 7 built-in, framework-agnostic Custom Elements (<fleetbo-*>) preventing white-screen crashes on malformed data. Built-in Data Intelligence: Query live database metrics in plain human language without external ETL or BI tools.

Quick Start

1. Initialize project & configure Vite auto-imports

npx fleetbo-svro init --keyApp=<APP_KEY> --token=

2. Sync cloud schema & generate IDE types

npx fleetbo-svro sync

Update SDK & refresh bindings

npm i fleetbo-svro@latest && npx fleetbo-svro sync

3. Consommation immédiate dans votre code

Ouvrez vos composants et utilisez directement l'objet Fleetbo. Grâce à la configuration Vite, aucun import n'est requis (l'import reste possible si vous le préférez) : JavaScript // Fonctionne directement dans vos composants React / Vue const response = await Fleetbo.add('orders', { product: 'Chaise', price: 49 });

Utilisation dans votre code

Écrire des données JavaScript

// 1. Ajouter un document (ID généré automatiquement) const response = await Fleetbo.add('orders', { product: 'Chaise', price: 49 }); console.log(response.documentId);

// 2. Ajouter un document avec un ID personnalisé await Fleetbo.addWithId('products', { name: 'Bureau Pro' }, 'bureau-123');

// 3. Ajouter un document lié à l'utilisateur actuellement connecté await Fleetbo.addWithUserId('preferences', { theme: 'dark' });

Lire et Supprimer des données JavaScript // 1. Récupérer tous les documents globaux d'une table const responseG = await Fleetbo.getDocsG('orders'); if (responseG.success) { console.log(responseG.data); // Tableau de vos documents }

// 2. Récupérer les documents spécifiques à l'utilisateur connecté const responseU = await Fleetbo.getDocsU('orders');

// 3. Récupérer un document unique par son ID const singleDoc = await Fleetbo.getDoc('orders', 'bureau-123');

// 4. Supprimer un document await Fleetbo.delete('orders', 'bureau-123');

Référence de l'API

Méthodes d'Écriture Fleetbo.add(table, data) → Ajoute un document. Fleetbo.addWithId(table, data, customId) → Ajoute un document avec un ID spécifique. Fleetbo.addWithUserId(table, data) → Ajoute un document lié à l'utilisateur connecté. Fleetbo.delete(table, docId) → Supprime un document.

Méthodes de Lecture Fleetbo.getDoc(table, docId) → Récupère un document unique par son ID. Fleetbo.getDocsG(table) → Récupère les documents globaux de la table. Fleetbo.getDocsU(table) → Récupère les documents de l'utilisateur connecté. Fleetbo.getAuthUser(table) → Récupère les données du profil de l'utilisateur connecté.