{"id":16131806,"url":"https://github.com/bcopy/inkjs-capacitor-template","last_synced_at":"2025-12-31T14:40:16.568Z","repository":{"id":73468552,"uuid":"557778299","full_name":"bcopy/inkjs-capacitor-template","owner":"bcopy","description":"A starter template for InkJS and Capacitor","archived":false,"fork":false,"pushed_at":"2022-10-26T09:33:41.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T14:43:08.062Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/bcopy.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":"2022-10-26T09:33:28.000Z","updated_at":"2022-10-26T09:33:44.000Z","dependencies_parsed_at":"2023-04-18T07:31:51.423Z","dependency_job_id":null,"html_url":"https://github.com/bcopy/inkjs-capacitor-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bcopy/inkjs-capacitor-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcopy%2Finkjs-capacitor-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcopy%2Finkjs-capacitor-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcopy%2Finkjs-capacitor-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcopy%2Finkjs-capacitor-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bcopy","download_url":"https://codeload.github.com/bcopy/inkjs-capacitor-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcopy%2Finkjs-capacitor-template/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265816172,"owners_count":23833093,"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":[],"created_at":"2024-10-09T22:27:18.174Z","updated_at":"2025-12-31T14:40:16.542Z","avatar_url":"https://github.com/bcopy.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Inkjs Capacitor starter project with Maven\n\nWhy even ? Maven and the excellent [frontend plugin](https://github.com/eirslett/frontend-maven-plugin) provide a virtual environment for NPM-based development : \n* :relieved: Experiment safely with Node and NPM without messing with your operating system.\n* :muscle: Let Maven handle the heavy-lifting related to Git flow releasing and versioning.\n\n## How to boostrap your own Maven and NPM project\n\nYou need to register a Maven POM file using the Frontend plugin, as described on the [plugin homepage](https://github.com/eirslett/frontend-maven-plugin). Your configuration should specify the Node and NPM installation, here for instance with Node v12.x and NPM v6.x :\n\n```xml\n    \u003cplugin\u003e\n        \u003cgroupId\u003ecom.github.eirslett\u003c/groupId\u003e\n        \u003cartifactId\u003efrontend-maven-plugin\u003c/artifactId\u003e\n        \u003cversion\u003e1.12.1\u003c/version\u003e\n        \u003cconfiguration\u003e\n            \u003cworkingDirectory\u003e${project.basedir}\u003c/workingDirectory\u003e\n            \u003cnodeVersion\u003ev12.18.3\u003c/nodeVersion\u003e\n            \u003cnpmVersion\u003e6.14.8\u003c/npmVersion\u003e\n        \u003c/configuration\u003e\n        \u003cexecutions\u003e\n            \u003cexecution\u003e\n                \u003cid\u003einstall node and npm\u003c/id\u003e\n                \u003cgoals\u003e\n                    \u003cgoal\u003einstall-node-and-npm\u003c/goal\u003e\n                \u003c/goals\u003e\n            \u003c/execution\u003e\n            \u003cexecution\u003e\n                \u003cid\u003enpm install\u003c/id\u003e\n                \u003cgoals\u003e\n                    \u003cgoal\u003enpm\u003c/goal\u003e\n                \u003c/goals\u003e\n            \u003c/execution\u003e\n            \u003cexecution\u003e\n                \u003cid\u003enpm run build\u003c/id\u003e\n                \u003cgoals\u003e\n                    \u003cgoal\u003enpm\u003c/goal\u003e\n                \u003c/goals\u003e\n                \u003cconfiguration\u003e\n                    \u003carguments\u003erun build\u003c/arguments\u003e\n                \u003c/configuration\u003e\n            \u003c/execution\u003e\n        \u003c/executions\u003e\n    \u003c/plugin\u003e\n\n```\n\nCreate a source folder, install NPM, extend your PATH then use ``npm init`` to create your ``package.json`` :\n\n```bash\nmvn com.github.eirslett:frontend-maven-plugin:install-node-and-npm\nexport PATH=`pwd`/node:`pwd`/bin:$PATH\nnpm init\n```\n\nYou can then install the Capacitor toolset with :\n\n```bash\nnpm i @capacitor/core\nnpm i -D @capacitor/cli\n```\n\n\nHappy coding 🎉🙌\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbcopy%2Finkjs-capacitor-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbcopy%2Finkjs-capacitor-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbcopy%2Finkjs-capacitor-template/lists"}