{"id":31684513,"url":"https://github.com/jo56/geometric-snow","last_synced_at":"2026-05-15T01:37:34.442Z","repository":{"id":317632289,"uuid":"1066788255","full_name":"jo56/geometric-snow","owner":"jo56","description":"Thee.js project combining navigable 3D canvas with original music","archived":false,"fork":false,"pushed_at":"2026-03-01T07:25:00.000Z","size":36577,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-01T10:48:23.332Z","etag":null,"topics":["3d","abstract","music","three-js","typescript"],"latest_commit_sha":null,"homepage":"https://geometric-snow.pages.dev/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jo56.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"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":"2025-09-30T00:57:37.000Z","updated_at":"2026-03-01T07:24:58.000Z","dependencies_parsed_at":"2025-10-28T10:22:04.780Z","dependency_job_id":null,"html_url":"https://github.com/jo56/geometric-snow","commit_stats":null,"previous_names":["jo56/geometric-snow"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/jo56/geometric-snow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jo56%2Fgeometric-snow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jo56%2Fgeometric-snow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jo56%2Fgeometric-snow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jo56%2Fgeometric-snow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jo56","download_url":"https://codeload.github.com/jo56/geometric-snow/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jo56%2Fgeometric-snow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33050450,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["3d","abstract","music","three-js","typescript"],"created_at":"2025-10-08T08:09:21.204Z","updated_at":"2026-05-15T01:37:34.434Z","avatar_url":"https://github.com/jo56.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Geometric Snow\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://geometric-snow.pages.dev\" target=\"_blank\"\u003e\n    \u003cimg src=\"assets/snow-preview.png\" alt=\"snow preview\"\u003e\n  \u003c/a\u003e\n  \u003cbr\u003e\n  \u003ca href=\"https://geometric-snow.pages.dev\" target=\"_blank\"\u003e\n    \u003cb\u003ehttps://geometric-snow.pages.dev\u003c/b\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\nAn interactive 3D audio-visual experience featuring geometric landscapes, floating diamonds with spatial audio, and falling snow particles.\n\n## Installation\n\n```bash\nnpm install\n```\n\n## Development\n\n```bash\nnpm run dev\n```\n\nRuns the development server on `http://localhost:5173`\n\n## Build\n\n```bash\nnpm run build\n```\n\nBuilds the project for production to the `dist/` folder.\n\n## Deployment\n\nThe project is configured for static hosting (Cloudflare Pages, Netlify, Vercel, etc.). Simply deploy the contents of the `dist/` folder after building.\n\n### Deployment Notes\n\n- Audio files are located in `public/audio/` (.ogg for desktop) and `public/mobile_audio/` (.m4a for mobile)\n- The build includes 7 spatial audio tracks in two formats\n- Browser autoplay policies may require user interaction before audio plays\n\n## Tech Stack\n\n- **React** - UI framework\n- **React Three Fiber** - React renderer for Three.js\n- **@react-three/drei** - Useful helpers for R3F\n- **Three.js** - 3D graphics library\n- **Zustand** - State management\n- **TypeScript** - Type-safe development\n- **Vite** - Build tool and dev server\n\n## Project Structure\n\n```\n.\n├── public/\n│   ├── audio/              # Desktop audio files (.ogg)\n│   └── mobile_audio/       # Mobile audio files (.m4a)\n├── src/\n│   ├── main.tsx            # Application entry point\n│   ├── components/         # React Three Fiber components\n│   │   ├── Scene.tsx       # Main scene composition\n│   │   ├── Diamond/        # Diamond components with audio\n│   │   ├── CameraController.tsx\n│   │   ├── FloatingObjects.tsx\n│   │   ├── Mountains.tsx\n│   │   ├── ParticleSystem.tsx\n│   │   ├── SceneLights.tsx\n│   │   ├── Stars.tsx\n│   │   ├── Structures.tsx\n│   │   └── Terrain.tsx\n│   ├── audio/              # Audio management\n│   ├── bridge/             # UI-to-store communication\n│   ├── hooks/              # Custom React hooks\n│   ├── materials/          # Custom Three.js materials\n│   ├── store/              # Zustand state store\n│   ├── ui/                 # Vanilla JS UI manager\n│   └── utils/              # Constants and utilities\n├── index.html              # Entry HTML file\n├── vite.config.ts          # Vite configuration\n└── dist/                   # Production build output\n```\n\n## Controls\n\n| Input | Action |\n|-------|--------|\n| 1-7 | Play audio tracks |\n| Z, X, C, V, B, N, M | Focus on diamonds |\n| Mouse click | Focus diamond/track |\n| Click \u0026 drag | Move camera |\n| W, A, S, D, E, F | Camera strafe movement |\n| Q | Stop all tracks |\n| R / ESC | Reset camera to overview |\n| P | Play/pause focused track |\n| H | Toggle help menu |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjo56%2Fgeometric-snow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjo56%2Fgeometric-snow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjo56%2Fgeometric-snow/lists"}