Documentation website for Bmg, a relational algebra library. Hosted at https://www.relational-algebra.dev
- Relational Algebra Primer - Educational content explaining core RA concepts
- Operator Reference - Documentation for all Bmg operators
- Interactive Playground - Try Bmg.js in the browser with:
- CodeMirror editor with syntax highlighting
- Real-time TypeScript error checking
- Support for CSV, JSON, and Excel data sources
- Live code execution
- Bmg - Ruby library with SQL compilation and ActiveRecord integration
- Bmg.js - TypeScript library for type-safe in-memory operations
pnpm install # Install dependencies
pnpm dev # Start development server
pnpm build # Type-check and build
pnpm preview # Preview production build
pnpm test # Run testssrc/
├── content/docs/ # Documentation pages (MDX/Markdown)
│ ├── ra-primer/ # Relational algebra educational content
│ ├── reference/ # Operator reference documentation
│ ├── comparison/ # Bmg vs SQL comparisons
│ └── usage/ # Getting started guides
├── components/try/ # Interactive playground
│ ├── composables/ # Vue composables
│ ├── lib/ # Shared utilities
│ └── workers/ # Web Workers
tests/ # Vitest test suites
MIT