Documentation Index
Fetch the complete documentation index at: https://docs.burn0.dev/llms.txt
Use this file to discover all available pages before exploring further.
burn0 dev
Runs your app with burn0 preloaded — no code changes needed.How it works
burn0 dev uses Node.js --require to preload burn0 before your app starts. This means:
- No
import '@burn0/burn0'needed in your code - Works with any Node.js app
- Cost tracking is active for the entire process
Examples
When to use burn0 dev vs import
| Approach | Best for |
|---|---|
import '@burn0/burn0' | Production, permanent tracking |
burn0 dev -- ... | Quick testing, no code changes |