{"id":21601498,"url":"https://github.com/flippingbitss/tarot-tanks-web-game","last_synced_at":"2026-05-10T14:47:53.803Z","repository":{"id":68235734,"uuid":"105438717","full_name":"flippingbitss/Tarot-Tanks-Web-Game","owner":"flippingbitss","description":"a 2d HTML5 canvas based tanks game made with createjs suite","archived":false,"fork":false,"pushed_at":"2018-01-13T22:26:09.000Z","size":8236,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-24T18:28:11.140Z","etag":null,"topics":["astar-pathfinding","babel","createjs","es6","es6-generators","html5-canvas","html5-game","priority-queue","tank-game","webpack"],"latest_commit_sha":null,"homepage":"https://tarot-tanks.herokuapp.com","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/flippingbitss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"contributing/.DS_Store","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-10-01T11:53:40.000Z","updated_at":"2018-06-25T12:24:07.000Z","dependencies_parsed_at":"2023-04-10T16:33:49.244Z","dependency_job_id":null,"html_url":"https://github.com/flippingbitss/Tarot-Tanks-Web-Game","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flippingbitss%2FTarot-Tanks-Web-Game","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flippingbitss%2FTarot-Tanks-Web-Game/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flippingbitss%2FTarot-Tanks-Web-Game/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flippingbitss%2FTarot-Tanks-Web-Game/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flippingbitss","download_url":"https://codeload.github.com/flippingbitss/Tarot-Tanks-Web-Game/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244227577,"owners_count":20419263,"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","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":["astar-pathfinding","babel","createjs","es6","es6-generators","html5-canvas","html5-game","priority-queue","tank-game","webpack"],"created_at":"2024-11-24T19:09:42.077Z","updated_at":"2026-05-10T14:47:48.778Z","avatar_url":"https://github.com/flippingbitss.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Install\n\n```shell\ngit clone https://github.com/matharumanpreet00/Tarot-Tanks-Web-Game.git\ncd tarot-tanks-web-game\nnpm install\n```\n\n### Run\n\n```shell\nnpm start\n```\n\nGoto [http://localhost:8080](http://localhost:8080)\n\nIf you need to access from a remote device (such as a smartphone on the same network), just `LOCALHOST=false npm start` and your site will be accessible via your IP (which will be output on the terminal at launch).\n\n### Build\n\nThe `./build` directory is ignored by git, it will contain a `dist` directory which holds the distribution version of your website (the one that you will [ship once built](https://github.com/topheman/webpack-babel-starter/wiki#deploy)).\n\nAll the build tasks will create a built version of the project in the `./build/dist` folder, cleaning it before making the build.\n\n* `npm run build`\n* `npm run build-prod` optimized / uglified version\n* `npm run build-prod-all` will build:\n\t* production version (optimized / uglified)\n\t* a debuggable version accessible at `/devtools` shipping all the sourcemaps, to ease sharing transpiled source code\n\n`npm run serve-dist` will serve your `./build/dist` folder at [http://localhost:3000](http://localhost:3000) so that you could test the built version you just made.\n\n### Linter\n\n* eslint is running while you're developping, check your console for errors\n* you can also launch it via `npm run lint`\n* see `.eslintrc` for the configuration (currently, this project uses [the airbnb presets](https://www.npmjs.com/package/eslint-config-airbnb-base) - if you find it to restrictive, just remove `\"extends\": \"airbnb-base\"` in the `.eslintrc`)\n\n### Customizations\n\nYou can customize the behavior of the scripts by specifying environments vars:\n\n* `NODE_ENV` by default at `development`, `NODE_ENV=production` when you `npm run build-prod`\n* `LINTER=false` will disable the linter (enabled by default, ex: `LINTER=false npm start`)\n* `STATS=true` will write `stats.json` profiling file on disk from webpack at build (disabled by default, ex: `STATS=true npm run build`)\n* `FAIL_ON_ERROR=true` will break the build if any errors occurs (useful for CIs such as travis - at `false` in dev-server, at `true` when building)\n* `LOCALHOST=false` to access via IP from other devices on the same network (ex: `LOCALHOST=false npm start` - default `true`)\n* `DEVTOOLS`: By default at `null`. Used internally by `npm run build-prod-all` (you may not need that if you don't do OSS)\n\n### Assets\n\nThe main image loaders are declared in the webpack config so that when you `require('./foo.png')` or use the helper `url('./bar.gif')` in your `.scss` files, at build time, those images will automatically be:\n\n* copied into `/build/dist/assets`\n\nFirst version, using webpack1.\n\nCopyright 2017 © Christophe Rosset\n\n\u003e Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n\u003e and associated documentation files (the \"Software\"), to deal in the Software without\n\u003e restriction, including without limitation the rights to use, copy, modify, merge, publish,\n\u003e distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the\n\u003e Software is furnished to do so, subject to the following conditions:\n\u003e The above copyright notice and this permission notice shall be included in all copies or\n\u003e substantial portions of the Software.\n\u003e The Software is provided \"as is\", without warranty of any kind, express or implied, including\n\u003e but not limited to the warranties of merchantability, fitness for a particular purpose and\n\u003e noninfringement. In no event shall the authors or copyright holders be liable for any claim,\n\u003e damages or other liability, whether in an action of contract, tort or otherwise, arising from,\n\u003e out of or in connection with the software or the use or other dealings in the Software.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflippingbitss%2Ftarot-tanks-web-game","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflippingbitss%2Ftarot-tanks-web-game","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflippingbitss%2Ftarot-tanks-web-game/lists"}