{"id":42043279,"url":"https://github.com/mikezaby/blibliki","last_synced_at":"2026-01-26T06:03:35.002Z","repository":{"id":232612373,"uuid":"775684253","full_name":"mikezaby/blibliki","owner":"mikezaby","description":"Schema-driven audio engine for Web and Node","archived":false,"fork":false,"pushed_at":"2026-01-23T16:50:50.000Z","size":4311,"stargazers_count":30,"open_issues_count":19,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-24T07:25:37.816Z","etag":null,"topics":["audio","audio-engine","modularsynth","webaudio"],"latest_commit_sha":null,"homepage":"http://www.blibliki.com","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/mikezaby.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":"2024-03-21T21:06:44.000Z","updated_at":"2026-01-18T14:53:21.000Z","dependencies_parsed_at":"2024-05-31T11:59:50.541Z","dependency_job_id":"5fa9433a-9a39-4895-893c-7f5121f0e38a","html_url":"https://github.com/mikezaby/blibliki","commit_stats":null,"previous_names":["mikezaby/bliblik_raw_engine","mikezaby/blibliki"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mikezaby/blibliki","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikezaby%2Fblibliki","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikezaby%2Fblibliki/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikezaby%2Fblibliki/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikezaby%2Fblibliki/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mikezaby","download_url":"https://codeload.github.com/mikezaby/blibliki/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikezaby%2Fblibliki/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28768002,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T03:54:34.369Z","status":"ssl_error","status_checked_at":"2026-01-26T03:54:33.031Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["audio","audio-engine","modularsynth","webaudio"],"created_at":"2026-01-26T06:03:34.221Z","updated_at":"2026-01-26T06:03:34.995Z","avatar_url":"https://github.com/mikezaby.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Blibliki\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge\u0026logo=typescript\u0026logoColor=white\" alt=\"TypeScript\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Web%20Audio%20API-FF7F00?style=for-the-badge\u0026logo=javascript\u0026logoColor=white\" alt=\"Web Audio API\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/react-%2320232a.svg?style=for-the-badge\u0026logo=react\u0026logoColor=%2361DAFB\" alt=\"React\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/pnpm-%234a4a4a.svg?style=for-the-badge\u0026logo=pnpm\u0026logoColor=f69220\" alt=\"PNPM\"\u003e\n\u003c/p\u003e\n\n## Overview\n\nBlibliki is a web audio project that provides a framework for building synthesizers and audio applications. This monorepo contains multiple packages that work together to create a complete audio development ecosystem.\n\n## Key Packages\n\n### [Engine](/packages/engine)\n\nThe core audio engine built directly on the Web Audio API. It provides a modular, data-driven approach to audio synthesis with support for:\n\n- Oscillators, filters, envelopes, and other audio modules\n- MIDI device integration\n- Polyphonic synthesis\n- Node.js compatibility\n\n[Learn more about the Engine](/packages/engine)\n\n### [Transport](/packages/transport)\n\nA musical transport and scheduler built on top of the Web Audio API. It provides precise timing and musical coordination for audio applications with support for:\n\n- Musical time signatures and BPM control\n- Event scheduling and generation\n- Swing and groove quantization\n- Transport controls (play/stop/reset)\n- Musical position tracking\n\n[Learn more about Transport](/packages/transport)\n\n### [Grid](/apps/grid)\n\nA visual interface for the Blibliki Engine that allows users to create and connect audio modules through an intuitive drag-and-drop interface. Features include:\n\n- Visual patching of audio modules\n- Real-time parameter control\n- MIDI device connectivity\n- Patch saving and loading\n- User authentication\n\n[Learn more about Grid](/apps/grid)\n\n## Project Structure\n\n```\nblibliki/\n├── apps/                # Applications\n│   ├── demo/            # Simple demo application\n│   └── grid/            # Main visual interface\n├── packages/            # Libraries and utilities\n│   ├── engine/          # Core audio engine\n│   ├── utils/           # Shared utilities\n│   └── [other]/         # Additional packages\n├── pnpm-workspace.yaml  # Workspace configuration\n└── package.json         # Root package configuration\n```\n\n## Getting Started\n\nThis project uses PNPM for package management and workspace handling.\n\n```bash\n# Install dependencies\npnpm install\n\n# Start development servers for all packages\npnpm dev\n\n# Build all packages\npnpm build\n```\n\n## Development\n\nEach package has its own README with specific development instructions. In general:\n\n- The engine package can be developed independently\n- The grid application depends on the engine package\n- Changes to shared packages require rebuilding dependent packages\n\n## Contributing\n\nContributions are welcome! Please feel free to submit issues or pull requests.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikezaby%2Fblibliki","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmikezaby%2Fblibliki","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikezaby%2Fblibliki/lists"}