{"id":28516844,"url":"https://github.com/kriasoft/hyperapp-starter","last_synced_at":"2025-10-05T23:33:48.710Z","repository":{"id":57270129,"uuid":"139350716","full_name":"kriasoft/hyperapp-starter","owner":"kriasoft","description":"Boilerplate and tooling for authoring modern web applications with Hyperapp and Node.js.","archived":false,"fork":false,"pushed_at":"2018-10-05T13:43:12.000Z","size":59,"stargazers_count":61,"open_issues_count":0,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-12T10:22:36.287Z","etag":null,"topics":["best-practices","boilerplate","css","html","hyperapp","isomorphic","javascript","nodejs","ssr","template","universal"],"latest_commit_sha":null,"homepage":"https://hyperapp.js.org/","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/kriasoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-07-01T18:09:13.000Z","updated_at":"2024-01-05T19:26:22.000Z","dependencies_parsed_at":"2022-09-02T09:51:17.026Z","dependency_job_id":null,"html_url":"https://github.com/kriasoft/hyperapp-starter","commit_stats":null,"previous_names":["frenzzy/hyperapp-starter"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/kriasoft/hyperapp-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kriasoft%2Fhyperapp-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kriasoft%2Fhyperapp-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kriasoft%2Fhyperapp-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kriasoft%2Fhyperapp-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kriasoft","download_url":"https://codeload.github.com/kriasoft/hyperapp-starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kriasoft%2Fhyperapp-starter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260231512,"owners_count":22978319,"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":["best-practices","boilerplate","css","html","hyperapp","isomorphic","javascript","nodejs","ssr","template","universal"],"created_at":"2025-06-09T04:13:02.147Z","updated_at":"2025-10-05T23:33:43.668Z","avatar_url":"https://github.com/kriasoft.png","language":"JavaScript","readme":"# \u003cimg height=\"24\" src=\"https://cdn.rawgit.com/kriasoft/hyperapp-starter/master/logo.svg\"\u003e Hyperapp Starter\n\n[![npm downloads](https://img.shields.io/npm/dw/create-hyperapp-starter.svg)](https://www.npmjs.com/package/create-hyperapp-starter)\n[![slack chat](https://hyperappjs.herokuapp.com/badge.svg)](https://hyperappjs.herokuapp.com 'Join us')\n\nBoilerplate and tooling for authoring modern web applications\nwith [Hyperapp](https://hyperapp.js.org/) and [Node.js](https://nodejs.org/).\n\n- **Best practices** — The project is based on [HTML5 Boilerplate](https://html5boilerplate.com/)\n  which is the product of years of iterative development and community knowledge.\n- **No build configuration** — Hassle-free updates for the whole toolchain with a single dependency.\n- **Isomorphic** — Write code once and run it on both client and server-side.\n\n---\n\nThis project was bootstrapped with [Hyperapp Starter](https://github.com/kriasoft/hyperapp-starter)\n([support](https://hyperappjs.herokuapp.com)).\n\n## Prerequisites\n\n- MacOS, Windows, or Linux\n- [Node.js](https://nodejs.org/) v8.9.0 or newer\n- Text editor or [IDE](https://en.wikipedia.org/wiki/IDE)\n  (e.g. [VS Code](https://code.visualstudio.com/) +\n  [EditorConfig](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig)\n  plugin)\n\n## Getting Started\n\nTo create a new app, run a single command:\n\n```bash\nnpm init hyperapp-starter\n```\n\nIt will generate the initial project structure inside the current directory\nand install the dependencies.\n\nAlso you can directly specify the project directory if you want to:\n\n```bash\nnpm init hyperapp-starter \u003cproject-directory\u003e\n```\n\n## Basic structure\n\n```bash\n.\n├── build/              # Compiled output\n├── coverage/           # Test coverage reports\n├── node_modules/       # 3rd-party libraries and utilities\n├── public/             # Static files such as favicon.ico etc.\n├── src/                # Application source code\n│   ├── app.js          # Universal (Isomorphic) application entry point\n│   ├── index.js        # Client-side rendering, e.g. app(state, actions, view, container)\n│   └── server.js       # Server-side rendering, e.g. renderToString(view, state, actions)\n├── .env                # Environment variables (optional)\n├── package.json        # The list of project dependencies + NPM scripts\n└── README.md           # Getting started guide\n```\n\n## Available Scripts\n\nIn the project directory, you can run:\n\n### `npm start`\n\nRuns the app in the development mode with \"live reload\".\nUses `src/index.js` and `src/server.js` files as entry points\nfor client-side and server-side apps.\n\n### `npm test`\n\nLaunches the test runner. It will look for test files with `.test.js` or `.spec.js` suffix.\nAlso you can use any [cli options](https://jestjs.io/docs/en/cli#options)\nwhich [Jest](https://jestjs.io/) supports.\n\n### `npm run lint`\n\nFinds problematic patterns in code using [ESLint](https://eslint.org/)\nand [stylelint](https://stylelint.io/).\nUsing `--fix` option you can automatically fix some of them\nand also format files using [Prettier](https://prettier.io/).\n\n### `npm run build`\n\nBuilds the app for production to the build folder.\nIt correctly bundles, optimizes and minifys the build for the best performance\nand the filenames include the hashes for a long term caching.\nUsing `--render` option you can generate html files for a static site hosting.\n\nSee [Hyperapp Tools](https://github.com/kriasoft/hyperapp-tools) for more.\n\n## License\n\nHyperapp Starter is MIT licensed.\nSee [LICENSE](https://github.com/kriasoft/hyperapp-starter/blob/master/LICENSE.md).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkriasoft%2Fhyperapp-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkriasoft%2Fhyperapp-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkriasoft%2Fhyperapp-starter/lists"}