How to set up webpack to work with React React is written in es6 so we have to transpile es6 to es5, so we have to use bable. Wabpack uses a concepts ‘loaders‘. Loader is a transformer. We want to install babel-loader that will transform the code. Obviously babel-loader makes use of babel and babel…
Tag: React
react-router and server side rendering (SSR)
links: react-router the official documentation link Content table: #How does react-router work Here are good articles A simple V4 react tutorial and How single page applications work. The most interesting it’s how SPAs works. So I’ll say in own words. There are two kinds of SPA, The first that change its state depending…
What is flux used for
flux is an architecture, which is used to build for front-end UIs. Links: npm package link the official site link GitHub link the GitHub examples page link very good video tutorial link Content table The flux diagrams The flux pattern is unidirectional, so the data flow goes to one direction. To understand how…
React the basic course. From newbie to ninja
Hi. In this article I’ll explain to you how to use react. How to learn it the basic. To the end of which you will able to create powerful react app and will know some pitfalls. Let’s get started. I’m a new to React and decided to create this masterpiece like a crib where I’ll…