Getting Started

Getting Started

Starting a new project with bro.js takes literally 5 seconds.

Installation

Run the scaffolding command to create a new project:

npx create-bro-app my-api
cd my-api
npm run dev

This will generate a ready-to-use directory structure:

my-api/
├── bro.config.js        # Your server configuration
├── package.json         
└── routes/              # Your endpoints live here!

That's it! Your server is running at http://localhost:5000.