We are using React.js, a JavaScrip library for creating user interfaces, we use React.js because is simple, clean and elegant code, and easy to maintain. For official documentation look at Getting Started or Tutorial pages.
From my point of view, React has the following advantages:
- Good if you want to build large applications with data that changes over time.
- Virtual DOM. React abstracts away the DOM (a programming API for HTML and XML documents), you diff that with the actual DOM, and only update what changed. This makes updates faster.
- Perfect to render UI components.
- Offers incredible performance and server side rendering.
- You can always change how the component will render modifying a source file.
- Building Javascript and HTML into JSX makes components easily understandable.
- React.js is declarative, which means that React conceptually hits the “refresh” button any time data changes.
- You can use React.js seamlessly with Node.js or AngularJS.
- Uni-directional data flow.
- It has the ability of returning an HTML component from a function.
This is an component example:
Recommendations:
- Use React.js only if your application has a lot of dynamic content.
- Break the UI into a component hierarchy.
- Use Redux instead of Flux. Redux is able to cut some complexity corners by using functional composition, Redux makes certain abstractions easier, or at least possible to implement, that would be hard or impossible to implement in Flux.
- Write tests of each of your components.
- Use ES6, Babel, Webpack, and NPM. Once you have added Babel, there is no reason not to go all out and use all the great ES6 features, like constants, arrow functions, default arguments, array and object destructuring, spread and rest operators, string interpolation, iterators and generators, a decent module system, etc. Use Webpack for bundling our code, and NPM for package management.
- Use the React and Redux dev tools.
- Write small components.
Here are some project using React: React.js:
- Netflix.
- AdRoll.
- Airbnb.
- Atlassian.
- Coursera.
- Docker.
- Dropbox.
- Deezer.
- IMDb.
- Paypal.
- Wolfram Alpha.
- Zendesk.
If you know the absolute basics use React Slingshot starter kit for rapid application development using React.js.
That's it!
If you enjoyed this post, you might like to follow me on Twitter, and follow me on Github.
Comments?
Leave us your opinion.