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

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

This is all about how easy and quick we can start build react using parcel without create-react-app or any other generators..
https://github.com/daggerok/parcel-react-example

gh-pages ncp parcel parcel-bundler react sass scss

Last synced: 3 months ago
JSON representation

This is all about how easy and quick we can start build react using parcel without create-react-app or any other generators..

Awesome Lists containing this project

README

          

= parcel-react-example image:https://travis-ci.org/daggerok/parcel-react-example.svg?branch=master["Build Status", link="https://travis-ci.org/daggerok/parcel-react-example"]
This is all about how easy and quick we can start react using parcel without any create-react-app or any other generators..

.log
----
yarn init -y
yarn add -E react react-dom
yarn add -ED parcel-bundler babel-preset-react babel-preset-env
echo '{ "presets": ["env", "react"] }' > .babelrc

touch index.html main.js

parcel -p 3000 index.html
----