May 2017
Intermediate to advanced
388 pages
7h 30m
English
The best way to start with React is by modifying and extending a Hello World example. There is a basic template available in the Facebook documentation.
For simplicity, you don't need a server to get started with React; you can load it and explore it as an HTML document by opening it in your browser.
Create a basic HTML page and place the scripts into the head tag:
<head><meta charset="UTF-8" /><title>Hello World</title> <script src="https://unpkg.com/react@latest/dist/react.js"> </script> <script src="https://unpkg.com/react-dom@latest/dist/ react-dom.js"></script> <script src="https://unpkg.com/babel-standalone@6.15.0/ babel.min.js"></script></head>
With the preceding scripts, we loaded react and react-dom and ...
Read now
Unlock full access