Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/knowler/ways-to-use-react

A git history of different methods of setting up React. A personal study.
https://github.com/knowler/ways-to-use-react

Last synced: 1 day ago
JSON representation

A git history of different methods of setting up React. A personal study.

Awesome Lists containing this project

README

        

# Ways To Use React

1. HTML + UNPKG production builds + non-JSX (120kB)
2. Babel standalone (120kB + 2mB Babel)
3. Babel compilation (120kB)
4. webpack (117kB)
5. Using `preact-compact` (21kB)
6. Using just `preact` (11kB)

So I guess the bare minimum React setup will be around ~120kB.
`create-react-app` seems to produce a bundle around the same
size.