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..
- Host: GitHub
- URL: https://github.com/daggerok/parcel-react-example
- Owner: daggerok
- License: mit
- Created: 2018-01-07T01:01:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-12T02:25:26.000Z (over 8 years ago)
- Last Synced: 2025-02-27T02:20:54.777Z (over 1 year ago)
- Topics: gh-pages, ncp, parcel, parcel-bundler, react, sass, scss
- Language: JavaScript
- Homepage: https://daggerok.github.io/parcel-react-example/
- Size: 1.63 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
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
----