{"id":26580044,"url":"https://github.com/theatrejs/loader-reaper","last_synced_at":"2026-04-18T00:01:44.727Z","repository":{"id":281733773,"uuid":"945838043","full_name":"theatrejs/loader-reaper","owner":"theatrejs","description":"⚙️ A Webpack Loader for Reaper files.","archived":false,"fork":false,"pushed_at":"2026-03-22T16:01:43.000Z","size":81,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-23T07:08:08.260Z","etag":null,"topics":["2d","canvas","engine","game","game-engine","html","html5","javascript","loader","pixel-art","reaper","theatrejs","theatrejs-loader","webgl","webgl2","webpack","webpack-loader"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":false,"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/theatrejs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-03-10T07:55:28.000Z","updated_at":"2026-03-22T16:01:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"15ac862d-b766-4389-9f0a-74e215d79991","html_url":"https://github.com/theatrejs/loader-reaper","commit_stats":null,"previous_names":["theatrejs/loader-reaper"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/theatrejs/loader-reaper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theatrejs%2Floader-reaper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theatrejs%2Floader-reaper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theatrejs%2Floader-reaper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theatrejs%2Floader-reaper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theatrejs","download_url":"https://codeload.github.com/theatrejs/loader-reaper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theatrejs%2Floader-reaper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31950891,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["2d","canvas","engine","game","game-engine","html","html5","javascript","loader","pixel-art","reaper","theatrejs","theatrejs-loader","webgl","webgl2","webpack","webpack-loader"],"created_at":"2025-03-23T06:29:56.172Z","updated_at":"2026-04-18T00:01:44.712Z","avatar_url":"https://github.com/theatrejs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Copyright](https://img.shields.io/badge/©-deformhead-white.svg)](https://github.com/deformhead) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/theatrejs/loader-reaper/blob/master/LICENSE) [![Bundle Size (Gzipped)](https://img.shields.io/bundlejs/size/@theatrejs/loader-reaper@latest)](https://www.npmjs.com/package/@theatrejs/loader-reaper/v/latest) [![NPM Version](https://img.shields.io/npm/v/@theatrejs/loader-reaper/latest)](https://www.npmjs.com/package/@theatrejs/loader-reaper/v/latest)\n\n# Reaper Webpack Loader\n\n\u003e *⚙️ A Webpack Loader for Reaper files.*\n\n## Installation\n\n\u003e *⚠️ This loader needs you to have [**Reaper**](https://www.reaper.fm) installed and configured so that it renders to `*.wav` format (default Reaper configuration).*\n\n```shell\nnpm install @theatrejs/loader-reaper --save-dev\n```\n\n## Webpack Configuration\n\n```javascript\n{\n    'module': {\n        'rules': [\n            ...\n            {\n                'test': /\\.rpp$/,\n                'use': [\n                    {\n                        'loader': '@theatrejs/loader-reaper',\n                        'options': {\n                            'reaper': '\u003cpath-to-reaper\u003e' // The path to the Reaper executable.\n                        }\n                    }\n                ]\n            }\n            ...\n        ]\n    }\n}\n```\n\n## Quick Start\n\n\u003e *⚠️ This example does not include the preloading of assets.*\n\n```javascript\nimport {Actor, Sound} from '@theatrejs/theatrejs';\n\nimport soundBreathe from './breathe.rpp';\n\nclass Hero extends Actor {\n    onCreate() {\n        this.addSound(\n            new Sound({\n                $audio: soundBreathe\n            })\n        );\n    }\n}\n```\n\n## With Preloading\n\n```javascript\nimport {FACTORIES, Sound} from '@theatrejs/theatrejs';\n\nimport soundBreathe from './breathe.rpp';\n\nclass Hero extends FACTORIES.ActorWithPreloadables([FACTORIES.PreloadableSound(soundBreathe)]) {\n    onCreate() {\n        this.addSound(\n            new Sound({\n                $audio: soundBreathe\n            })\n        );\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheatrejs%2Floader-reaper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheatrejs%2Floader-reaper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheatrejs%2Floader-reaper/lists"}