Introducing gulp-devtools
Its been a while since my previous blog post and I am very happy to finally made some time to blog agian. Recently I have been playing a lot with chrome extension development as its so much fun. Read on
Its been a while since my previous blog post and I am very happy to finally made some time to blog agian. Recently I have been playing a lot with chrome extension development as its so much fun. Read on
In my hunt to learn the next UI framework after Backbone, I came across React. Its an open source javascript famework from Facebook, used for building modular user interfaces. As the project page says, most people use React as V
in the MVC
architecture.
Read on
If you are a javascript developer like me, you must have come across a scenario where you needed to convert a string to a number. I have generally been using either parseInt
or parseFloat
for these type of conversions.
Read on
When building large multi-modular apps, embedding business logic within your Backbone views or models does not scale well. Ideally you would want to de-couple your business logic from the view logic. Solving this problem becomes really easy using Geppetto
.
Read on
In my previous post we looked at setting up data-bindings between our backbone views and models using the Backbone.Modelbinder
plugin. In this post, I will demonstrate another viable alternative for data-binding called Backbone.Stickit
.
Read on
One of the first things any developer migrating into the Javascript world would look for is to find common coding practices and concepts. Data-Binding
is one such concept which facilitates bi-directional binding between views and its associated models.
Read on