Ripple Bun Workflow
- •Read the canonical bundled reference at
references/llms-bun.txt. - •Treat that file as the source of truth for Ripple syntax, APIs, and constraints.
- •Keep responses concise and point back to the bundled file instead of duplicating long sections.
- •Rewrite any command examples from npm/npx to Bun equivalents before returning output.
Command Translation Rules
- •
npx <tool> ...->bunx <tool> ... - •
npm iornpm install(install lockfile deps) ->bun install - •
npm install <pkg>->bun add <pkg> - •
npm install --save-dev <pkg>->bun add --dev <pkg> - •
npm run <script>->bun run <script>
Ripple-Specific Guardrails
- •Keep text nodes wrapped in expressions, e.g.
{"text"}. - •Keep template syntax inside
componentbodies only. - •Use
track()and@for reactive state access and updates. - •Prefer stable keys in list rendering when object identity is not sufficient.