Adding OOP chain methods in Javascript

Method chaining is very useful when you have several setter type methods in a class. This technique can be...

Drawing outline for any kind of HTML Canvas objects

Creating an outline for single basic HTML canvas object is very simple since we are able to use lineWidth property on canvas context. Where as if we need to...

Writing GUI Applications with Gtk+

GTK+ was originally developed for GIMP photo editing software of GENOME project. Where as nowadays it is very popular cross platform GUI toolkit. The core of GTK+ is written...

Jquery style DOM Node selection in NodeJS

If you worked with some frontend developments you know how useful JQuery’s selectors. Suppose you need to select some internal text of some html portion using NodeJs. Then it is...

Making global commands with NodeJS

I guess you are creating new files using touch command. touch command works anywhere inside your OS. it means it’s a global command. Here I am going to...