An open API service indexing awesome lists of open source software.

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

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.