Introduction to React Web Framework

React is a web front-end framework written in JavaScript (JS) programming language.

You can find an introduction to JavaScript on this post.

You can find a list of alternative front-end web frameworks on this post.

React Components

JSX is a syntax extension for JavaScript. You can find more information about JSX on this external link.

Learning React

Prerequisites to learn React

To work with React, you need a good understanding of the following technologies:

  • HTML
  • CSS
  • JavaScript

You can find information about how to get introduced on web development on this post.

Resources to learn React

You can find the official React learning resources on this external link.

React Documentation

You can find the React official documentation on this external link.

Editors and IDEs for React

You can find:

  • On-premise Editors and IDEs
  • Cloud Editors and IDEs

On-premise Editors and IDEs

Visual Studio Code

Visual Studio Code is a source code editor for multiple programming languages (C#, Python, etc. and JavaScript). It is developed by American company Microsoft.

Atom

Atom is a source code editor for multiple programming languages.

Sublime Text

Sublime Text is a source code editor for multiple programming languages.

WebStorm

WebStorm is an on-premise IDE developed by Czech company JetBrains, focused on development on JavaScript.

It is paid and proprietary software. Unlike other JetBrains products, there is no free and open-source (FOSS) community edition.

Official website

Reactide

Reactide is an IDE specific for React.js. It is free and open-source (FOSS).

Code repository at GitHub

Rekit Studio

Rekit Studio is a toolkit for building scalable web applications with React, Redux and React-router.

Official website

Nuclide

Nuclide is an IDE with built-in support for JavaScript.

To find more information about compatibility between Nuclide and React, please read this external link.

Official website

Cloud IDEs

CodePen

CodePen is an online JavaScript editor.

Official website

Hello World Program

Code for a “Hello world” React program.

HTML file:

<div id="root">
    <!-- This element's contents will be replaced with your component. -->
</div>

JS file:

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<h1>Hello, world!</h1>);

You might also be interested in…

External references

  • React; “React“; React

Leave a Reply

Your email address will not be published. Required fields are marked *