{"id":35228514,"url":"https://github.com/zerdos/testing.spike.land","last_synced_at":"2026-01-17T08:35:49.399Z","repository":{"id":37000120,"uuid":"250300899","full_name":"zerdos/testing.spike.land","owner":"zerdos","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-01T22:28:05.000Z","size":1748578,"stargazers_count":13,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-01-02T07:20:59.876Z","etag":null,"topics":["blog","deno","gatsby","monaco","monorepo","typescript"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zerdos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-03-26T15:44:25.000Z","updated_at":"2026-01-01T22:28:09.000Z","dependencies_parsed_at":"2023-09-26T14:02:23.244Z","dependency_job_id":"32774796-1dca-4d0a-83df-5dcf0eaeb492","html_url":"https://github.com/zerdos/testing.spike.land","commit_stats":{"total_commits":7496,"total_committers":14,"mean_commits":535.4285714285714,"dds":"0.21784951974386335","last_synced_commit":"5f7e34e286bd77bac583ea8b1c6b7bdb728beec6"},"previous_names":["spike-land/monorepo","zed-vision/monorepo","zerdos/spike.land"],"tags_count":1868,"template":false,"template_full_name":null,"purl":"pkg:github/zerdos/testing.spike.land","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerdos%2Ftesting.spike.land","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerdos%2Ftesting.spike.land/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerdos%2Ftesting.spike.land/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerdos%2Ftesting.spike.land/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zerdos","download_url":"https://codeload.github.com/zerdos/testing.spike.land/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerdos%2Ftesting.spike.land/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28504367,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T06:57:29.758Z","status":"ssl_error","status_checked_at":"2026-01-17T06:56:03.931Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blog","deno","gatsby","monaco","monorepo","typescript"],"created_at":"2025-12-30T01:57:21.569Z","updated_at":"2026-01-17T08:35:49.388Z","avatar_url":"https://github.com/zerdos.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Real-Time React Page Editor in TypeScript\n\nEasily edit and preview your React pages in real-time using this\nTypeScript-based page editor.\n\n![Real-Time React Page Editor Screenshot](https://user-images.githubusercontent.com/1433047/152510761-ecd12293-1eaf-425e-ae7b-71238260cc8c.gif)\n\n[Live Demo](https://spike.land)\n\n## Overview\n\nThis project provides a real-time collaborative React page editor built with\nTypeScript and powered by Cloudflare Workers. It enables developers to edit and\npreview React components in real-time, with built-in collaboration features.\n\n## Documentation\n\n📚 **[View the Documentation Cheatsheet](docs/CHEATSHEET.md)**\n\n### Quick Start\n\n- [Getting Started Guide](docs/development/getting-started.md)\n- [Build Process Documentation](docs/development/build-process.md)\n\n### Architecture\n\n- [System Overview](docs/architecture/overview.md)\n- [Frontend Architecture](docs/architecture/frontend.md)\n- [Workers Architecture](docs/architecture/workers.md)\n- [Data Flow](docs/architecture/data-flow.md)\n- [State Management](docs/architecture/state-management.md)\n\n## Prerequisites\n\n- Node.js (LTS version)\n- Yarn\n- Git\n\n## Quick Start\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/zerdos/spike.land.git\ncd spike.land\n```\n\n2. Install dependencies:\n\n```bash\nyarn install\n```\n\n3. Start the development environment:\n\n```bash\n# Start everything (frontend + workers)\nyarn dev\n\n# Or start components individually:\nyarn dev:fe      # Frontend only\nyarn dev:workers # Workers only\n```\n\n## Scripts Overview\n\nThe project uses a comprehensive build system with the following main commands:\n\n### Development\n\n- `yarn dev` - Start all development servers (frontend + workers)\n- `yarn dev:fe` - Start frontend development server only\n- `yarn dev:workers` - Start Cloudflare Workers in development mode\n\n### Building\n\n- `yarn build:all` - Build all packages\n- `yarn build:fe` - Build frontend only\n- `yarn build:workers` - Build workers only\n\n### Deployment\n\n- `yarn deploy:dev` - Deploy to development environment\n- `yarn deploy:prod` - Deploy to production environment\n\n### Testing \u0026 Utilities\n\n- `yarn test` - Run all tests\n- `yarn test:e2e` - Run end-to-end tests\n- `yarn lint` - Run linting\n- `yarn fmt` - Format code\n- `yarn types:check` - Type check all packages\n\n## Monorepo Structure ![Last Updated](https://img.shields.io/github/last-commit/zerdos/spike.land.svg)\n\nThis project is organized as a monorepo with the following structure:\n\n```\n/packages\n├── code/                 # Frontend React application\n│   ├── dev scripts:     # - yarn dev (Vite + TypeScript + Workers)\n│   └── build scripts:   # - yarn build (Production build with type checking)\n│\n├── spike.land/          # Main Cloudflare Worker backend\n│   ├── dev scripts:     # - yarn dev (Local) or yarn dev:remote (Remote)\n│   └── deploy scripts:  # - yarn deploy:dev/prod (Environment-specific)\n│\n├── durable-objects/     # Cloudflare Durable Objects for stateful logic\n│\n├── js.spike.land/       # Transpiler Worker\n│   ├── dev scripts:     # - yarn dev (Local development)\n│   └── deploy scripts:  # - yarn deploy:prod (Production deployment)\n│\n└── spike-land-renderer/ # Page rendering engine\n    ├── dev scripts:     # - yarn dev (Local development)\n    └── deploy scripts:  # - yarn deploy (Production deployment)\n```\n\n## Development Environment\n\nThe project includes several development container configurations in the\n`/devcontainers` directory for consistent development environments:\n\n- bookworm-devcontainer\n- jammy-devcontainer\n- lunar-devcontainer\n- trixie-devcontainer\n- node-chrome\n\n### Using Gitpod\n\nYou can explore the entire repository using Gitpod:\n\n[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/zerdos/spike.land)\n\nAfter opening in Gitpod, you can access a full Ubuntu + Xfce environment:\n\n```bash\nstartx  # Launches Xfce desktop environment\n# Access the remote desktop on port :6080 in your browser\n```\n\n## Contributing\n\nContributions are welcome! Please read our\n[Contributing Guidelines](CONTRIBUTING.md) for details on submitting pull\nrequests.\n\n## License\n\nThis project is licensed under the terms of the license found in\n[LICENSE.md](LICENSE.md).\n\n## Security\n\nFor security concerns, please see our [Security Policy](SECURITY.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerdos%2Ftesting.spike.land","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzerdos%2Ftesting.spike.land","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerdos%2Ftesting.spike.land/lists"}