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

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

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
```