{"id":15464443,"url":"https://github.com/dabolus/cr-card-maker","last_synced_at":"2025-04-12T18:50:40.554Z","repository":{"id":87393559,"uuid":"119519471","full_name":"Dabolus/cr-card-maker","owner":"Dabolus","description":"A simple online tool to create custom Clash Royale cards.","archived":false,"fork":false,"pushed_at":"2023-11-12T09:36:53.000Z","size":108,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-26T13:05:31.375Z","etag":null,"topics":["card-maker","clash-royale","polymer2","supercell","webcomponents"],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"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/Dabolus.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}},"created_at":"2018-01-30T10:18:04.000Z","updated_at":"2021-05-09T19:51:46.000Z","dependencies_parsed_at":"2024-10-22T17:30:08.742Z","dependency_job_id":null,"html_url":"https://github.com/Dabolus/cr-card-maker","commit_stats":{"total_commits":5,"total_committers":2,"mean_commits":2.5,"dds":"0.19999999999999996","last_synced_commit":"0d4d13ff55314bdf7e51dae069621426d260026e"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dabolus%2Fcr-card-maker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dabolus%2Fcr-card-maker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dabolus%2Fcr-card-maker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dabolus%2Fcr-card-maker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Dabolus","download_url":"https://codeload.github.com/Dabolus/cr-card-maker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248618222,"owners_count":21134199,"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":["card-maker","clash-royale","polymer2","supercell","webcomponents"],"created_at":"2024-10-02T00:36:14.691Z","updated_at":"2025-04-12T18:50:40.530Z","avatar_url":"https://github.com/Dabolus.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [![Clash Royale Card Maker](https://projects.dabolus.com/cr-card-maker/header.svg)](https://beta.clashroyalecardmaker.com)\n\nThe second version of the [Clash Royale Card Maker](https://www.clashroyalecardmaker.com), completely rewritten from scratch.\n\n##### Why creating a new version from scratch?\nEven if it has been updated and bugfixed later on, the original Card Maker was written in just three days.\nNo build tools were used, everything was handwritten using [Sublime Text 3](https://www.sublimetext.com/3).\nFor this reason, it was unoptimized, badly organized and inflexible.\n\nAlmost an year later, I felt it was time to finally give the Card Maker a proper organization.\nAfter many attempts on building a scalable, optimized website, I finally came up with this.\nThe main points of the CRCM 2.0 are:\n- Built using [WebComponents](https://www.webcomponents.org/) to be as much modular as possible. Adding new features is incredibly easy!\n- Card generation is much closer to the original Clash Royale cards. Most of the text on the card auto fits and you can also add newlines to the card description and edit and rearrange the card properties (finally!)\n- The card is directly editable. No side form or anything else. Just tap what you want to edit an do whatever you want\n- [Polymer CLI](https://www.polymer-project.org/2.0/docs/tools/polymer-cli) to test and build the project\n- [Bower](https://bower.io/) to manage the project dependencies\n- Less external libraries, much lighter and faster\n- A more minimal and appealing UI\n- Built as a [Progressive Web App](https://developers.google.com/web/progressive-web-apps/): installs a [service worker](https://developers.google.com/web/fundamentals/getting-started/primers/service-workers) that caches all the assets, so it is even faster after the first time you use it (and it can also be installed as a normal app!)\n- **Open-source!**\n\n_Note: I know Bower is deprecated, but for now the most stable version of Polymer and all of its dependencies are only available there. I will switch to yarn as soon as Polymer 3 comes out._\n\n## Run it locally and/or contribute\nInstall the latest version of bower:\n```bash\n$ yarn global add bower\n# or\n$ npm i -g bower\n```\nInstall the Polymer CLI:\n```bash\n$ yarn global add polymer-cli\n# or\n$ npm i -g polymer-cli\n```\nClone the repository:\n```bash\n$ git clone https://github.com/Dabolus/cr-card-maker.git \u0026\u0026 cd cr-card-maker\n```\nFinally, install the dependencies using Bower:\n```bash\n$ bower install\n```\n\nNow everything is set up and ready! These are the available commands:\n```bash\n$ polymer serve     # Serves the CRCM on localhost:8081\n$ polymer build     # Builds the CRCM and copies the built files to the 'build/' folder.\n```\nThe `build` command will create three different builds:\n- `es5-bundled`: The JS code is transpiled to ES5 and the dependencies are bundled\n- `es6-bundled`: The JS code is left as-is (ES6) and the dependencies are bundled\n- `es6-unbundled`: The JS code is left as-is (ES6) and the dependencies are **NOT** bundled\n\n**Optional:** if you contribute to this project and you want to be credited:\n\n1. Edit `package.json` by **adding** yourself into the `contributors` field, e.g.\n   ```JSON\n   {\n     \"contributors\": [{\n       \"name\": \"Your name\",\n       \"email\": \"your.email@example.com\",\n       \"url\": \"your-website.example.com\"\n     }]\n   }\n   ```\n2. Edit `humans.txt` by **adding** yourself into the `THANKS` field, e.g.\n   ```\n   /* THANKS */\n       Your role: Your name\n       Site: your-website.example.com\n       Contact: your.email [at] example.com\n       From: Your country\n   ```\n\nEnjoy!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdabolus%2Fcr-card-maker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdabolus%2Fcr-card-maker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdabolus%2Fcr-card-maker/lists"}