https://github.com/iansu/cra-minimal-templates
A collection of minimal templates for Create React App
https://github.com/iansu/cra-minimal-templates
create-react-app javascript minimal-templates react template typescript
Last synced: about 1 month ago
JSON representation
A collection of minimal templates for Create React App
- Host: GitHub
- URL: https://github.com/iansu/cra-minimal-templates
- Owner: iansu
- License: mit
- Created: 2019-11-15T22:08:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T04:44:18.000Z (over 2 years ago)
- Last Synced: 2025-03-27T15:48:38.502Z (about 2 months ago)
- Topics: create-react-app, javascript, minimal-templates, react, template, typescript
- Language: HTML
- Homepage:
- Size: 1.58 MB
- Stars: 31
- Watchers: 3
- Forks: 1
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# CRA Minimal Templates
A collection of minimal templates for [Create React App](https://create-react-app.dev/)
## Templates
- `cra-template-minimal` - A minimal JavaScript template
- `cra-template-minimal-typescript` - A minimal TypeScript template
- `cra-template-empty` - A (nearly) empty JavaScript template
- `cra-template-empty-typescript` - A (nearly) empty TypeScript template## Usage
To use one of these templates add `--template ` when creating a new app:
```sh
// create a new app with cra-template-minimal
npx create-react-app my-app --template minimal// create a new app with cra-template-minimal-typescript
npx create-react-app my-app --template minimal-typescript
```