How to use React from the browser

React

React

React, as you probably know having reached this page, is a visualization framework created by Facebook.

This small guide explains how to use react from the browser without any additional tool.

Professional development with React nowadays includes the usage of npm (node package manager) to install packages like React and ReactDOM, and that of module bundlers like browserify o webpack. But this step can be taken at a later time, and not so simple applications can ben be developed without using those tools.

For the time being, I post only the code that shows the string Hello World.

The code uses the Babel transpiler in its standalone version, as suggested here.