https://github.com/dreygur/cra-templates
A small collection of react template for my daily projects
https://github.com/dreygur/cra-templates
create-react-app create-react-app-typescript create-react-app-w3 w3 web3
Last synced: 25 days ago
JSON representation
A small collection of react template for my daily projects
- Host: GitHub
- URL: https://github.com/dreygur/cra-templates
- Owner: dreygur
- License: mit
- Created: 2022-09-02T10:11:34.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-24T06:23:45.000Z (over 3 years ago)
- Last Synced: 2025-10-24T21:29:29.760Z (5 months ago)
- Topics: create-react-app, create-react-app-typescript, create-react-app-w3, w3, web3
- Language: JavaScript
- Homepage:
- Size: 34.2 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# create-react Templates
This is a collection of unofficial advanced templates for [Create React App](https://github.com/facebook/create-react-app).
To use one of this template, add `--template @dreygur/{template_name}` when creating a new app.
For example:
```sh
# 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](https://create-react-app.dev/docs/getting-started) – How to create a new app.
- [User Guide](https://create-react-app.dev) – How to develop apps bootstrapped with Create React App.