Animating your component with React-Move
You want to show a dialog to visitor to ask your user a question. How do you want to do it? Just show up the dialog… Read More »Animating your component with React-Move
You want to show a dialog to visitor to ask your user a question. How do you want to do it? Just show up the dialog… Read More »Animating your component with React-Move
From my experience with AngularJS, one of the biggest problem in AngularJS is manage state and flow of data. AngularJS provides many solutions to transfer… Read More »Migrating my first AngularJS app to Redux+AngularJS
Thanks to the ability of share link, websites has been very popular from the day it was born. That’s why the abilities to create link and handle application state base on browser’s url are very important for any web framework.
In Angular 1, we usually work with ngRoute and ui-router. These library works well, but because of the nature of Angular 1, they all have same problem: they separate controller and template, make it very difficult to test. Angular 2 comes with its own router library and it works directly with component. It’s a great improvement compare with Angular 1.
Yes, it’s one-way binding. Don’t confuse it with once-time binding in Angular 1.3. One-way data binding is a new data binding mechanism for component and… Read More »Demystifying AngularJS 1.5 one-way data binding
Welcome to my first post on Angular 2. In this post, we are going to make an Todo app with Angular 2. We will play… Read More »10 minutes making a simple Angular 2 Todo App