My personal, full-fledged react starter that is also suitable for enterprise use
Go to file
Mastermindzh 3cb1759648 - Updated to React 18
- Updated for public release
  - Git was reset for privacy reasons
2022-06-27 16:41:03 +02:00
.vscode - Updated to React 18 2022-06-27 16:41:03 +02:00
config - Updated to React 18 2022-06-27 16:41:03 +02:00
public - Updated to React 18 2022-06-27 16:41:03 +02:00
scripts - Updated to React 18 2022-06-27 16:41:03 +02:00
src - Updated to React 18 2022-06-27 16:41:03 +02:00
.babelrc - Updated to React 18 2022-06-27 16:41:03 +02:00
.browserslistrc - Updated to React 18 2022-06-27 16:41:03 +02:00
.dockerignore - Updated to React 18 2022-06-27 16:41:03 +02:00
.editorconfig - Updated to React 18 2022-06-27 16:41:03 +02:00
.eslintignore - Updated to React 18 2022-06-27 16:41:03 +02:00
.eslintrc - Updated to React 18 2022-06-27 16:41:03 +02:00
.gitignore - Updated to React 18 2022-06-27 16:41:03 +02:00
.nvmrc - Updated to React 18 2022-06-27 16:41:03 +02:00
.prettierrc.js - Updated to React 18 2022-06-27 16:41:03 +02:00
CHANGELOG.md - Updated to React 18 2022-06-27 16:41:03 +02:00
Dockerfile - Updated to React 18 2022-06-27 16:41:03 +02:00
jest.config.js - Updated to React 18 2022-06-27 16:41:03 +02:00
package-lock.json - Updated to React 18 2022-06-27 16:41:03 +02:00
package.json - Updated to React 18 2022-06-27 16:41:03 +02:00
README.md - Updated to React 18 2022-06-27 16:41:03 +02:00
tsconfig.json - Updated to React 18 2022-06-27 16:41:03 +02:00

react-starter-kit

Web project starter kit including modern tools and workflow based on create-react-app, best practices from the community, a scalable base template and a good learning base.

Includes:

  • Redux-toolkit
  • Vscode setup (debugging + snippets)
  • Jest, @testing-library and Cypress
  • Immer

Getting started

  1. npm install
  2. npm start (localhost:3000)
  3. npm test (run jest + coverage on localhost:8080)

Project structure

Only the important files are shown

.
├── .vscode # vscode setup (debug, snippets, etc)
├── config # tool configuration
├── dist # production version
├── public # directory with public files (config, icons, etc)
├── scripts # Modified default create-react-app scripts
├── src # application source
│   ├── app # redux-toolkit hooks + store
│   └── infrastructure # infrastructure code (wrappers, navigation, config file class)
├── CHANGELOG.md # update this whenever you update the application
├── Dockerfile # Dockerfile to build nginx container
├── jest.config.js # configuration for jest
├── package.json
├── README.md # keep this up to date
└── tsconfig.json