Fleetbo CLI

1.0.250 · active · verified Sun Apr 19

Fleetbo CLI (version 1.0.250) is the official command-line interface for the Fleetbo platform, engineered to streamline the development and deployment of native mobile applications built with React. This tool is actively maintained, with new releases likely synchronized with updates to the broader Fleetbo platform, though a specific public release cadence is not explicitly defined. It distinguishes itself by offering a suite of specialized commands tailored for the Fleetbo ecosystem's mobile development workflows, encompassing initial project setup, automated page scaffolding, and platform-specific build processes for both Android and iOS. A key differentiator is its 'AI Architect Mode' (Alex), indicating integration with AI-powered development assistance. The CLI functions as a comprehensive project scaffold, code generator, and build orchestrator, aiming to simplify the intricacies of React Native development within the Fleetbo framework.

Common errors

Warnings

Install

Quickstart

Demonstrates generating a new page component within a Fleetbo project using the CLI.

npx fleetbo-cli page Dashboard
# This command generates a new React component file named 'Dashboard'
# within your Fleetbo project's page directory, ready for customization.
# For example, it might create src/pages/Dashboard/index.js
# and an associated styles or test file. Ensure your .env is configured.

# Alternatively, if installed as a dev dependency:
# npm install --save-dev fleetbo-cockpit-cli
# npm run fleetbo page Settings --prefix admin
# This would generate a page component under an 'admin' subdirectory.

view raw JSON →