A minimal starter project used for Dev Mastery tutorials
- React
- Bundling with parcel
- Dev server with hot module replacement
- Formatting with prettier and standard
- Testing with jest, react-testing-library, and jest-dom
- Baseline CSS with normalize.css
- Defaults to system font stack as described at CSS Tricks (Medium/Wordpress approach)
Clone the repo to your local machine, and start building:
git clone https://github.com/eddyerburgh/DM-starter.git my-app
cd my-app
To start the development server with hot module reloading, run:
npm start
To build for production, run:
npm run build
To launch unit tests:
npm t