Setup for React

This lesson will describe how to: - Use React in an HTML page - Configure your editor to highlight React JSX code - Test the output of JSX in the browser

Adding React to an HTML Page

React can be added like any other library by using a <script> link in the header

The <script> link can be to a Content Delivery Network (CDN) or a local package.

Example HTML File Head

  <head>
    <meta charset="UTF-8" />
    <title>Hello World</title>
    <script src="https://unpkg.com/react@16/umd/react.development.js"></script>
    <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
    <script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
  </head>

Local Package Installation

You will need to have the following to include React as a local package in your HTML file.

Local Package Installation

We will start with installing React using NPM



```sh
npm init -y
npm install --save react react-dom

Local Package Installation

Download the React, ReactDOM, and Babel Scripts from the Content Delivery Network (CDN)

React Development

ReactDOM Development

Babel Standalone

Local Package Installation

Put the content of the scripts into a directory called src in the project root

mkdir js
mv path/to/downloads/react.development.js ./src/
mv path/to/downloads/react-dom.development.js ./src/
mv path/to/downloads/babel.min.js ./src/

Local Package Installation

Create an index.html file and source all three files in the head

<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Hello World</title>
    <script src="src/react.development.js"></script>
    <script src="src/react-dom.development.js"></script>
    <script src="src/babel.min.js"></script>
  </head>
  <body>
    <div id="output"></div>
  </body>
</html>

Local Package Installation

Now simply write some react in a <script></script> tag

Example:

<script type="text/babel">
  ReactDOM.render(
  <h1>Hello, local React!</h1>,
  document.getElementById('output')
  );
</script>

Local Package Installation

Finished simple index.html

<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Hello World</title>
    <script src="src/react.development.js"></script>
    <script src="src/react-dom.development.js"></script>
    <script src="src/babel.min.js"></script>
  </head>
  <body>
    <div id="output"></div>
    <script type="text/babel">
      ReactDOM.render(
      <h1>Hello, local React!</h1>,
      document.getElementById('output')
      );
    </script>
  </body>
</html>

Editor Configuration

The VS Code editor extension 'Sublime Babel' will highlight the syntax for React, JSX, and ES6+ Code.

 Previous Lesson Next Lesson 

Outline

[menu]

/