https://github.com/featurist/create-hyperdom-app
Hyperdom starter kit
https://github.com/featurist/create-hyperdom-app
framework-javascript hyperdom javascript typescript
Last synced: 5 months ago
JSON representation
Hyperdom starter kit
- Host: GitHub
- URL: https://github.com/featurist/create-hyperdom-app
- Owner: featurist
- License: mit
- Created: 2018-02-10T15:33:17.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T20:02:24.000Z (over 2 years ago)
- Last Synced: 2024-10-01T12:06:50.442Z (7 months ago)
- Topics: framework-javascript, hyperdom, javascript, typescript
- Language: JavaScript
- Homepage: https://github.com/featurist/hyperdom
- Size: 458 KB
- Stars: 3
- Watchers: 7
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# create-hyperdom-app
[Hyperdom](https://github.com/featurist/hyperdom) starter kit. With [express](https://expressjs.com/) backend and [webpack](https://webpack.js.org/) assets management.
Build Type | Status
------|------
Push to master | [](https://app.circleci.com/pipelines/github/featurist/create-hyperdom-app)
Latest `create-hyperdom-app` npm module against latest dependencies (runs daily) | [](https://travis-ci.org/featurist/create-hyperdom-app)
## Creating new app```bash
yarn create hyperdom-app myApp # npx create-hyperdom-app myApp
cd myApp
yarn install # npm install
```### Options
- `--jsx`: generate jsx project instead of the default js one.
- `--tsx`: generate typescript project with tsx.## Contributing
Run tests:
```
yarn test
```Run tests with browser window:
```
yarn test --debug
```Tests run `yarn install` which is pretty slow. Set `CACHE_NODE_MODULES=1` when running `yarn test` to speed things up a bit.