Create React apps without any configuration. Kickoff-React-App uses Typescript v4 And React v17 to develop the app.
Also, Kickoff-React-App supports these features:
- Using emotion as css-in-js library
- Using less as css pre-processor
- Using jest and @testing-library/react for unit test and component test
- Using eslint and prettier for code style
You'll need to have Node >=10 and Git >= 2.13 on your local development machine.
If you have any questions or something doesn't work, please file an issue.
You can check the template used by this tool for more detail information.
To create a new app, you may choose one of the following methods:
npx kickoff-react-app create react-app
npm i kickoff-react-app -g
kickoff-react-app create react-app
# shorthand format: kra create react-app
Kickoff-React-App supports two commands: create
, init
.
▶ kra -h
Usage: kickoff-react-app <command> [options]
Options:
-v, --version output the cli version
-h, --help display help for command
Commands:
init <project-name> quick generator a project without any css pre-processor, test and lint library support
create <project-name> create project interactively
help [command] display help for command
Use create
to create project interactively, and you can choose whether to use css pre-process, test and lint library.
kra create <project-name>
Use init
to quickly create basic project without any css pre-process, test and lint library.
kra init <project-name>