Build Your Own Chrome Extension - Home Page

Saturday, November 28, 2015

When you visit a web page on the internet, it is possible that you find that the page lacks some features that you would like, or may be it has unnecessary features that you don't want, or even may be some features may be better with some tweaks. In any case, a browser extension can manipulate html elements on the page to give you a better user experience.

This tutorial series guide you through a step by step manner on how to make your own custom extension for the popular chrome browser.

Node.js for beginners - Home Page

Few years back, the idea of JavaScript was that it runs in client-side, meaning, in the user's browser. It is excellent at things like validating forms, showing/hiding elements dynamically, animations, and speaking to the server in the background using AJAX.
Node.js is a milestone project which changed the traditional image of JavaScript as a client-side scripting language. Let's learn how JavaScript can take over the server-side using Node.js.

Node.js for beginners 3 - Modules

Wednesday, November 25, 2015

In any node app, the use of modules is a must. A good understanding of modules will help you a lot when developing an application.

In our previous tutorial, we used a core module of Node.js, the http module. You can think of core modules as built-in modules of Node.js. However, we can also write modules of our own. To understand the story behind these modules, let's go ahead and make one.