Tag: ES6
-
Boilerplate: Webpack + React + Redux
A boilerplate for playing around with react, redux and react-router with the help of webpack. Contains: a working example of a filterable table which you can play around with (look below). ES6 – 7 Support with Babel Redux dev tools to help you keep track of the app’s state hot module replacement support so you…
-
Understanding a Simple React, React-Router and Redux Application in ES2015. Part 2
This is the third article in a series of posts on react, redux and webpack. Others: configuring webpack Understanding a simple react, redux and react-router app in es2015, part1. Here, we will cover the routes configuration, the actions and all the react components starting from the Root.
-
Understanding a Simple React, React-Router and Redux Application in ES2015. Includes Hot Module Replacement and much more.
In this post I will try to make you understand how a javascript react application with redux and react-router works and how they play together. We will be using this boilerplate.
-
Tutorial: Webpack setup using React, React-Router and Redux for developing Front End applications. Includes Hot Module Replacement and much more.
In this post I will show you how to build and understand a webpack config file for developing applications with react, react–router and redux. I also provide a boilerplate to start developing right away. If you already know how to set up webpack and wish to learn more on building and understanding react apps, see this post. It…
-
What are Javascript Prototypes?
I’m writing this post on javascript prototypes to help me further understand what they are by documenting, or rather summarizing, what I read. I hope that by doing this I also help you understand the subject. Prototypes, the prototype chain, the new keyword, the ES6 class keyword, Object.assign will all be discussed.