RiotJS startkit, based on create-react-app and react-scripts.
Package included simple app example, webpack dev server with riot hot reload and less, sass, stylus support. ES6 features available too. Jest with riot support for testing. ES6 and eslint in riot tag.
Just read https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md but replace all "react" word to "riot" :)
- Hot .tag reload
- Realtime code linting
- Async/await (ES2017).
- Exponentiation Operator (ES2016).
- Object Rest/Spread Properties (stage 3 proposal).
- Dynamic import() (stage 3 proposal)
- Jest for .tag testing
- Generate all favicons and manifest.json
- Pre-commit testing
nodejs 10 and optionaly docker-compose, for deploy to ipfs
git clone --depth=1 https://github.com/alexstep/create-riot-dapp my-riot-app
cd my-riot-app
rm -rf .git
npm install
npm start
go to http://localhost:9999
Riot route base url set in ./src/view/app.view.js line 47
Edit "meta" section in package.json (see manifest format description) Put your app icon in ./src/favicon_source.svg or .png or other image format and run
npm run meta:generate
manifest.json , browserconfig.xml, favicons and other meta-files will be generated and put to ./public/static/meta/ folder.
Also you can change some options in ./scripts/tools/metainfo/config.js
npm run build
Check build result
npm run check_build
npm run deploy
For example you can deploy app to firebase
npm install -g firebase-tools
firebase login
firebase init
firebase deploy
Change settings in scripts/tools/deploy_ssh Add this file to .gitignore
npm run deploy:ssh
npm run deploy:ipfs
Publish ./dist folder to IPFS by defaults. Need insatlled docker-composes/tools/deploy_ipfs/docker-compose.yml
Modify the .env
file in the root of the generated project, and add any of the configuration options below 👇 to enable that feature.
Fork and send pull-request. Thank you!