Tagged in

JavaScript

Eastros
Eastros
A publication on software development
More information
Followers
3
More, on Medium

How to setup Google reCAPTCHA in a ReactJS app?

Google’s reCAPTCHA is an industry standard when it comes to fighting bots. Integrating it in a regular web app has almost become a no-brainer, thanks to plugins available on almost every platform to do the job. With this expectation, I started…


When not to use Q.denodeify?

Q is a promising promise library, and Q.denodeify is a savior from pyramid of doom in NodeJS apps, but:

Do not use Q.denodeify for those NodeJS functions which don’t follow error-first callback approach.

Legit use:


The BackboneJS Way of Thinking

So you are frustrated tackling BackboneJS and wondering why it isn’t solving your problems as you had expected it to, after hearing about its glorious penetration in many high profile projects. Well, join the club, you are not alone. Here I’ll share my expectations when I…


Why Backbone-Relational Sucks?

Apologies for being blunt, but this is what I truly feel after weeks of struggle with Backbone-Relational. Some of the features library boasts are great, but some other problems make its usage horrible. So if you are lured by the cool features this framework claims, here is…


Backbone.LayoutManager: How to prepend a view?

Backbone.LayoutManager v0.6.6 docs state that:

If you wish to change append to prepend you can easily change how the View is inserted by setting a new append function.

Regular Expressions In JavaScript

In my first post regarding Regular Expressions (regex), we discussed the basic syntax of regex, its importance and how they are used along with a few examples. I strongly recommend reading that post first if you are completely unfamiliar with regex. Otherwise, lets move…