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
- Host: GitHub
- URL: https://github.com/vigzmv/react-parcel-example
- Owner: vigzmv
- License: mit
- Created: 2017-12-16T19:29:11.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-20T13:29:10.000Z (over 8 years ago)
- Last Synced: 2024-10-18T21:59:35.673Z (over 1 year ago)
- Topics: bundler, parcel, react
- Language: JavaScript
- Homepage: https://gh.vigneshm.com/react-parcel-example/
- Size: 72.3 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.