Skip to content

Latest commit

 

History

History
55 lines (30 loc) · 1.48 KB

File metadata and controls

55 lines (30 loc) · 1.48 KB

Ironhack Logo

React | Hello React

The main new topic of that module is React, a front-end framework.

The main front-end frameworks

http://www.npmtrends.com/react-vs-@angular/core-vs-vue

MERN Stack

We will include React in another architecture called the MERN Stack.

The documentation we will use

With Codepen

To use React, you can either play on Codepen with this Hello World React example on Codepen.

### With CodeSanbox

If you want something very quick to use, very close to what you can have with VS Code, you can go on CodeSanbox.io: https://codesandbox.io/s/new

With create-react-app

Or you can create a React application with your terminal:

$ npm install -g create-react-app
$ create-react-app my-app
$ cd my-app
$ npm start

You can follow the tutorial, it will give you an overview.

It is doable if you don't have any React knowledge, but it is going to be hard.