{"id":33169585,"url":"https://github.com/samme/brunch-phaser","last_synced_at":"2025-11-20T19:01:04.554Z","repository":{"id":53777170,"uuid":"80966670","full_name":"samme/brunch-phaser","owner":"samme","description":"A Brunch skeleton for making games with Phaser 3. Variants for CoffeeScript, ES6, TypeScript","archived":true,"fork":false,"pushed_at":"2021-03-14T20:49:38.000Z","size":513,"stargazers_count":34,"open_issues_count":0,"forks_count":9,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-05-17T12:33:34.918Z","etag":null,"topics":["babel","brunch-skeleton","coffeescript","es6","phaser","phaser-boilerplate","phaser3","typescript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/samme.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}},"created_at":"2017-02-05T03:41:10.000Z","updated_at":"2023-04-19T17:58:41.000Z","dependencies_parsed_at":"2022-08-25T08:40:36.289Z","dependency_job_id":null,"html_url":"https://github.com/samme/brunch-phaser","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/samme/brunch-phaser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samme%2Fbrunch-phaser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samme%2Fbrunch-phaser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samme%2Fbrunch-phaser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samme%2Fbrunch-phaser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/samme","download_url":"https://codeload.github.com/samme/brunch-phaser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samme%2Fbrunch-phaser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285494607,"owners_count":27181443,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-20T02:00:05.334Z","response_time":54,"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":["babel","brunch-skeleton","coffeescript","es6","phaser","phaser-boilerplate","phaser3","typescript"],"created_at":"2025-11-16T01:00:33.531Z","updated_at":"2025-11-20T19:01:04.549Z","avatar_url":"https://github.com/samme.png","language":"JavaScript","funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"Brunch with Phaser 3\n====================\n\nA [Brunch](http://brunch.io) skeleton for making games with [Phaser 3](http://phaser.io/phaser3). (But lately I'm using [Parcel](https://github.com/samme/phaser-parcel) instead.)\n\n    brunch new \u003cproject\u003e -s phaser\n\nOr choose one of these variants:\n\n- [brunch-phaser-coffee](https://github.com/samme/brunch-phaser-coffee \"Brunch with Phaser 3 and CoffeeScript\")\n- [brunch-phaser-es6](https://github.com/samme/brunch-phaser-es6 \"Brunch with Phaser 3 and ES6\")\n- [brunch-phaser-typescript](https://github.com/samme/brunch-phaser-typescript \"Brunch with Phaser 3 and TypeScript\")\n- [brunch-phaser2](https://github.com/samme/brunch-phaser2 \"Brunch with Phaser CE\")\n\nGet started\n-----------\n\n- Install (if you don't have them):\n  - [Node.js](https://nodejs.org)\n  - [Brunch](http://brunch.io): `npm install -g brunch`\n- Run:\n  - `brunch new \u003cproject\u003e -s phaser`\n  - `npm run start` or `brunch watch --server` watches the project with continuous rebuild.\n  - `npm run build` or `brunch build --production` builds a minified project for production.\n  - [trouble?](http://brunch.io/docs/troubleshooting)\n- Make:\n  - Write your code in [app](app).\n  - Put game assets in [assets](app/static/assets).\n\nPhaser\n------\n\nPhaser is managed through [npm](https://docs.npmjs.com/cli/npm). The latest release is installed when you create a new project.\n\n    npm view phaser version\n\nYou can install a specific version instead:\n\n    npm install -S phaser@3.7\n\nUpdate with:\n\n    npm update\n\n### Other builds\n\nSee the `npm.static` entry in [brunch-config](./brunch-config.coffee).\n\nAdd packages\n------------\n\n    npm install -S \u003cpackage-name\u003e\n\nand in your code:\n\n```javascript\nrequire('package-name');\n```\n\nAdd other libraries\n-------------------\n\nAdd the unminified script to [vendor](vendor).\n\nConfiguration\n-------------\n\n- [brunch](http://brunch.io/docs/config)\n- [uglify-js-brunch](https://www.npmjs.com/package/uglify-js-brunch#usage)\n  - [minify options](https://www.npmjs.com/package/uglify-js#minify-options)\n\nSave\n----\n\nYou can make your own local skeleton (template):\n\n```shell\ngit clone https://github.com/samme/brunch-phaser.git brunch-phaser\ncd brunch-phaser\n# If you make changes, commit them to master:\ngit commit # etc.\n```\n\nNow use it with `brunch new`:\n\n```shell\nbrunch new \u003cproject\u003e -s ./path/to/brunch-phaser\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamme%2Fbrunch-phaser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamme%2Fbrunch-phaser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamme%2Fbrunch-phaser/lists"}