My versions of CRA templates
Two templates are available for installation:
Template based on Create React App
SASS / SCSS support is added to the template, ESLint and Prettier are installed
You can use the template with the CRA command:
npx create-react-app your-project --template present-g
If you are already in the desired directory, use .
Instead of your-project
:
npx create-react-app . --template present-g
Template based on Create React App version for TypeScript
SASS / SCSS support is added to the template, ESLint and Prettier are installed configured for TypeScript
You can use the template with the CRA command:
npx create-react-app your-project --template present-g-ts
If you are already in the desired directory, use .
Instead of your-project
:
npx create-react-app . --template present-g-ts
Happy use;)