{"id":15142547,"url":"https://github.com/nidup/ldjam40","last_synced_at":"2026-01-20T04:01:45.384Z","repository":{"id":72831044,"uuid":"112834152","full_name":"nidup/ldjam40","owner":"nidup","description":"Ludum Dare #40 - Going Nuts","archived":false,"fork":false,"pushed_at":"2018-04-28T07:34:59.000Z","size":47570,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-07T19:58:22.442Z","etag":null,"topics":["ldjam40","nuts","phaserjs","squirrel","typescript"],"latest_commit_sha":null,"homepage":"https://grena.itch.io/going-nuts","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/nidup.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}},"created_at":"2017-12-02T10:44:52.000Z","updated_at":"2018-04-28T07:35:35.000Z","dependencies_parsed_at":"2023-03-01T09:30:58.405Z","dependency_job_id":null,"html_url":"https://github.com/nidup/ldjam40","commit_stats":{"total_commits":125,"total_committers":4,"mean_commits":31.25,"dds":0.6719999999999999,"last_synced_commit":"831dbcd3b1f5a4d89ea594dc194fc3d818f7f5b1"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nidup/ldjam40","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nidup%2Fldjam40","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nidup%2Fldjam40/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nidup%2Fldjam40/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nidup%2Fldjam40/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nidup","download_url":"https://codeload.github.com/nidup/ldjam40/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nidup%2Fldjam40/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28595316,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"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":["ldjam40","nuts","phaserjs","squirrel","typescript"],"created_at":"2024-09-26T09:42:24.829Z","updated_at":"2026-01-20T04:01:45.366Z","avatar_url":"https://github.com/nidup.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Going Nuts\n\nEntry submitted for the Ludum Dare 40.\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://github.com/nidup/ldjam40/blob/master/assets/doc/goingnuts.png\" alt=\"Going Nuts\"/\u003e\n\u003c/p\u003e\n\n## Description\n\nOh... you wake up late to prepare your stocks for the winter.\nYou must collect as much nuts as you can before it's too late.\n\n## How to Play\n\nUse arrow keys to move left or right, and space bar for actions.\nThe sound is important in this game, so turn on the sound (even better with headset on!).\n\n## Links\n\n[Play the game on Itch.io](https://grena.itch.io/going-nuts) (it downloads the whole internet, so please be patient \u003c3) TODO\n\n## Credits\n\nGame submitted in jam mode, but made in ~48h with compo constraints (except we were 5 evil laugh):\n\n - grena (https://twitter.com/grenagluman) - Code, game design, SFX\n - juliensnz (https://twitter.com/juliensnz) - Code, game design, SFX\n - nao (https://twitter.com/nao__ink) - Arts \u0026 graphics\n - pierallard (https://twitter.com/Pierrallard) - Code, game design\n - nidup (https://twitter.com/duponico) - Code, game design\n\n## Licenses\n\nMIT for the code of this repository (src folder).\n\nCopyright Nao ink for the artwork (assets folder).\n\n# Getting Started to Dev\n\n## Run the dev image\n\nRun to mount local project code inside the container and bind ports\n```\ndocker run --name phaser --rm -v \"$PWD\":/usr/src/app -p 8080:8080 -d nidup/phaser:latest\n```\n\nYour container should appears in the list when typing,\n```\ndocker ps\n```\n\n## Install / update project dependencies\n\n```\ndocker exec -it phaser npm install\n```\n\n## Running the project in dev mode:\n\nLaunch webpack server in watch mode,\n```\ndocker exec -it phaser npm run dev\n```\n\nYou can access your project in your browser,\n```\nhttp://localhost:8080/\n```\n\n# Deploy the demo\n\n## Build the bundle.js\n\n```\ndocker exec -it phaser npm run build\n```\n\n## Commit then push the bundle.js\n\n```\ngit add build/bundle.js\ngit commit\ngit push\n```\n\n# Utils\n\n## Connect in bash to the dev image\n\nRun,\n```\ndocker exec -it phaser bash\n```\n\nYour local files should be mounted in the container,\n```\nls\nDockerfile  LICENSE  README.md\tassets\tbin  doc  index.html  lib  package.json  src  tsconfig.json  webpack.config.js\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnidup%2Fldjam40","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnidup%2Fldjam40","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnidup%2Fldjam40/lists"}