Skip to content
This repository was archived by the owner on Feb 21, 2022. It is now read-only.

Latest commit

 

History

History
18 lines (11 loc) · 857 Bytes

File metadata and controls

18 lines (11 loc) · 857 Bytes

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.