Tag: learning

  • Learning Redux: A step beyond “todos” and “async” examples

    For the past two days I’ve been into Redux. It’s a framework-agnostic JavaScript library for easier handling of all application’s state. Specialty of Redux is that application state is stored in one object (and not different object for different data domain) and that functions reducers which manipulates part of the state never mutate it but…

  • Starting up with Ember.js

    Here are some beginner’s advices to someone who just decided to start learning Ember.js, a JavaScript framework for building ambitious web applications. Use developer’s edition of the framework when developing, because it includes comments and useful assertions which help you while debugging your application. It also gives you a various notices about deprecated things. Also…