This is a collection of unofficial advanced templates for Create React App.
To use one of this template, add --template @dreygur/{template_name}
when creating a new app.
For example:
# for JavaScript
npx create-react-app my-app --template @dreygur/cra-template-ts
# for TypeScript
npx create-react-app my-app --template @dreygur/cra-template-ts
# for JavaScript with Web3
npx create-react-app my-app --template @dreygur/cra-template-js-w3
# or
# for JavaScript
yarn create react-app my-app --template @dreygur/cra-template-js
# for TypeScript
yarn create react-app my-app --template @dreygur/cra-template-ts
# for JavaScript with Web3
yarn create react-app my-app --template @dreygur/cra-template-js-w3
For more information, please refer to:
- Getting Started – How to create a new app.
- User Guide – How to develop apps bootstrapped with Create React App.