An open API service indexing awesome lists of open source software.

https://github.com/vigzmv/react-parcel-example

Simplest minimum viable React example app with Parcel Bundler
https://github.com/vigzmv/react-parcel-example

bundler parcel react

Last synced: about 1 year ago
JSON representation

Simplest minimum viable React example app with Parcel Bundler

Awesome Lists containing this project

README

          

# react-parcel-example

Simplest minimum viable React app example with [Parcel Bundler](https://parceljs.org)

Read the [complete guide on **Medium**](https://blog.vigneshm.com/building-a-reactjs-project-with-parceljs-d88cdd178e50).

## Getting started

Clone the repository

```sh
git clone git@github.com:vigzmv/react-parcel-example.git
cd react-parcel-example
```

Install dependencies and start the server

```sh
npm install
npm start
```

Then open `http://localhost:1234` and edit any file press save. Parcel
will automagically hot reload you files whenever you make changes.

## Building for Production

```
npm run build
```

This will compile your JS and copy your `index.html` to the `dist` folder.