/minimal-react-setup

A minimal React boilerplate using Parcel. Includes testing with Jest and React Testing Library

Primary LanguageJavaScript

Minimal React Boilerplate

This is a very minimal set-up to get started writing a React app. It bundles your code using Parcel and has Jest configured to write tests with react-testing-library.

This was mostly designed as a learning aid to help understand how bundlers are set up.
You should probably use Create React App for anything really important

Getting started

Quick start

  1. Clone this repo
  2. npm i
  3. npm run dev to start the development server

Slow start

If you want a bit more info about what exactly is needed for this project to work go to the setup guide and follow the manual installation steps in a fresh repo of your own.