{"id":13793430,"url":"https://github.com/selfup/hyperapp-one","last_synced_at":"2025-05-12T20:30:59.958Z","repository":{"id":16878540,"uuid":"80771307","full_name":"selfup/hyperapp-one","owner":"selfup","description":"Hyperapp One is a Parcel boilerplate for quickstarting a web application with Hyperapp (V1), JSX, and Prettier.  ","archived":true,"fork":false,"pushed_at":"2023-10-18T21:16:19.000Z","size":1545,"stargazers_count":126,"open_issues_count":1,"forks_count":20,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-11-18T08:53:11.090Z","etag":null,"topics":["airbnb","boilerplate","eslint","html","hyperapp","jsx","webpack-boilerplate"],"latest_commit_sha":null,"homepage":"https://selfup.github.io/hyperapp-one","language":"JavaScript","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/selfup.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}},"created_at":"2017-02-02T21:39:30.000Z","updated_at":"2024-02-01T12:35:21.000Z","dependencies_parsed_at":"2024-04-05T04:44:55.870Z","dependency_job_id":null,"html_url":"https://github.com/selfup/hyperapp-one","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/selfup%2Fhyperapp-one","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selfup%2Fhyperapp-one/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selfup%2Fhyperapp-one/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selfup%2Fhyperapp-one/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/selfup","download_url":"https://codeload.github.com/selfup/hyperapp-one/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253816686,"owners_count":21968867,"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":["airbnb","boilerplate","eslint","html","hyperapp","jsx","webpack-boilerplate"],"created_at":"2024-08-03T23:00:21.217Z","updated_at":"2025-05-12T20:30:59.552Z","avatar_url":"https://github.com/selfup.png","language":"JavaScript","readme":"# Hyperapp One\n\n[![Build Status](https://travis-ci.org/selfup/hyperapp-one.svg?branch=master)](https://travis-ci.org/selfup/hyperapp-one) [![Slack](https://hyperappjs.herokuapp.com/badge.svg)](https://hyperappjs.herokuapp.com 'Join us')\n\nHyperapp One is a Parcel boilerplate for quickstarting a web application with [Hyperapp V1](https://github.com/jorgebucaran/hyperapp/tree/V1), JSX, and Prettier.\n\n\u003cdiv align=center\u003e\n  \u003ca href=http://selfup.github.io/hyperapp-one\u003e\n    \u003cimg width=500 src=https://user-images.githubusercontent.com/56996/35205568-92ab325a-ff79-11e7-8978-81f0866c53af.gif /\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\nRedux Dev Tools support is included as well :smile:\n\n\u003cimg width=500 src=https://user-images.githubusercontent.com/9837366/53659599-98ffd080-3c21-11e9-8404-b4a3072f6651.png /\u003e\n\n\u003ch2\u003eTable of Contents\u003c/h2\u003e\n\n\u003c!-- TOC --\u003e\n\n- [Installing](#installing)\n- [Testing](#testing)\n- [Development](#development)\n  - [Wiping the Commit History](#wiping-the-commit-history)\n  - [Deploying to GitHub Pages](#deploying-to-github-pages)\n    - [First Time](#first-time)\n    - [Every Time After](#every-time-after)\n- [License](#license)\n\n\u003c!-- /TOC --\u003e\n\n## Installing\n\n```bash\ngit clone https://github.com/selfup/hyperapp-one\ncd hyperapp-one\nnpm install\nnpm start\n```\n\n## Testing\n\n```bash\nnpm test\n```\n\nAll tests are in the root `test` directory. :tada:\n\n## Development\n\nAccess [localhost:1234](http://localhost:1234).\n\nThe browser will reload as you save new code. 🚀\n\nNow go code something awesome!\n\n### Wiping the Commit History\n\nMake sure you are in the boilerplate root and run:\n\n```bash\nnpm run wipe\n```\n\nAdd your remote:\n\n```bash\ngit remote add origin \u003cssh_or_https_url\u003e\n```\n\nThen work as usual.\n\nOr if you prefer to do it yourself from scratch:\n\n```bash\nrm -rf .git\ngit init\ngit add .\ngit commit -m \"initial commit\"\n```\n\nThen add your remote and work from there as usual.\n\n```bash\ngit remote add origin \u003cssh_or_https_url\u003e\n```\n\n### Deploying to GitHub Pages\n\nThis will be interactive as it merges `master` into the `gh-pages` branch :pray:\n\n```bash\n./scripts/gh_pages.sh\n```\n\nSometimes it will say there is nothing to commit even though you have more commits.\n\nJust do a `git push` or a `git push -f` and then check back out to master :pray:\n\n**Now visit**:\n\n- No custom domain: `yourUserName.github.io/yourRepoName`\n- With a custom domain: `yourCustomDomain/yourRepoName`\n\n## License\n\nHyperapp One is MIT licensed. See [LICENSE](LICENSE).\n","funding_links":[],"categories":["Boilerplates V1"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fselfup%2Fhyperapp-one","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fselfup%2Fhyperapp-one","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fselfup%2Fhyperapp-one/lists"}