-
🚀 Get Started: getting-started.md
- Project setup, prerequisites, quick start guide
- Development workflow and common tasks
- VS Code setup and extensions
-
🏗️ Understand Build Process: build-process.md
- Build system architecture
- Package-specific builds
- Environment configurations
-
📋 Full System Overview: overview.md
- System components and interactions
- High-level architecture
- Core technologies
-
🖥️ Frontend (React + Vite): frontend.md
- React application structure
- Component architecture
- Development patterns
-
⚡ Workers (Cloudflare): workers.md
- Worker roles and responsibilities
- Inter-worker communication
- Deployment and management
-
🔄 Data Flow: data-flow.md
- Real-time collaboration flow
- Asset management
- API interactions
-
💾 State Management: state-management.md
- Frontend state architecture
- Durable Object state
- Distributed state coordination
-
React 19 + TypeScript setup → frontend.md
- Component architecture
- Monaco Editor integration
- Real-time features
-
Build configuration → build-process.md#frontend
- Vite setup
- TypeScript compilation
- Asset processing
-
State management → state-management.md#frontend
- React hooks and context
- Real-time state sync
- Local state handling
-
Authentication & Real-time → workers.md#main-worker
- WebSocket handling
- Authorization flow
- Asset serving
-
Durable Objects → state-management.md#durable-objects
- State persistence
- Real-time coordination
- Rate limiting
-
AI Integration → workers.md#ai-integration
- OpenAI/Anthropic integration
- Request handling
- Response processing
-
ESBuild integration → workers.md#transpiler-worker
- Configuration
- Plugin system
- Build optimization
-
Code processing → data-flow.md#code-processing-flow
- Transpilation flow
- Module resolution
- Source maps
-
SSR & Screenshots → workers.md#renderer-worker
- Rendering pipeline
- Asset generation
- Caching strategy
-
Puppeteer usage → workers.md#puppeteer-integration
- Browser control
- Page rendering
- PDF generation
# Start development
yarn dev # Start everything
yarn dev:fe # Frontend only
yarn dev:workers # Workers only
# Type checking
yarn types:check # Check types
yarn types:watch # Watch mode
# Build packages
yarn build:all # Build everything
yarn build:fe # Frontend only
yarn build:workers # Workers only
# Clean builds
yarn clean # Remove artifacts
# Deploy
yarn deploy:dev # Development
yarn deploy:prod # Production
# Testing
yarn test # Run all tests
yarn test:e2e # E2E tests
package.json
- Root package configurationtsconfig.json
- TypeScript configurationvite.config.ts
- Vite build configurationeslint.config.mts
- ESLint configurationwrangler.toml
- Worker configuration (located in the root directory, packages/js.spike.land, packages/spike-land-renderer, and packages/durable-objects)
packages/code/src/@/
- Core frontend utilitiespackages/code/src/components/
- React componentspackages/spike.land/src/
- Main worker codepackages/js.spike.land/src/
- Transpiler codedocs/
- Documentation files