hello.js

var please = require('share');
console.log('thank you');

NEW !!!

Tuesday, 2 May, 2017 UTC

A tour from JavaScript Callback to Promise to Async-Await

We are using callbacks in javascript from its beginning days. We thought it great. We can pass a method as an argument to another. Wow! Is not it amazing? Yes, it is unless we use a lot of it. Let’s say we have two callbacks i.e. A and B. This B callback ... more


Sunday, 23 April, 2017 UTC

Angular 4 tutorial – Make Angular 4 app using GitHub API

Angular 4 is here for some time. It is a good time to enhance your skills on angular 4. I find myself more powerful while using angular 4. You should know that there are not many differences with angular 2 and angular 4. So anything I will discuss here ... more


Sunday, 9 April, 2017 UTC

What is .gitkeep? Differences between .gitignore and .gitkeep

Did you ever encounter .gitkeep in any git project? You might. If you install recent angular 2 or angular 4 projects via angular CLI, you will see one .gitkeep file in the ./src/app/assets folder. So you might wonder what is this file? We all know about ... more


Thursday, 23 February, 2017 UTC

Learn to build JavaScript Canvas Line Chart in 2017

Here, I will discuss how you can build a simple JavaScript Line Chart Library. Here we will try to make a line chart using HTML5 canvas. As it will be library so the code have to be easy for the other developers to use. The final product would look like ... more


Sunday, 19 February, 2017 UTC

Five Must Know Javascript Console Tricks in 2017

Do you know about console.table()? Here we will learn to add styles to our javascript console output. We will also learn about advanced console tricks to debug better. I will ask you to use chrome for this. Let’s jump into this right now. Console Tricks ... more


Friday, 27 January, 2017 UTC

Replace XMLHttpRequest AJAX with Fetch API

We all are using ajax for a pretty long time but not with Fetch API. When AJAX came to the modern web, it changed the definition of how web works. To load a new content in a web page, we do not need a full page reload. Using AJAX, we can post or pull ... more


Thursday, 26 January, 2017 UTC

Eleven Different Ways – How to make one HTTP POST Request

If you are a developer, you might already know what an HTTP POST request is. You are pretty comfortable in making one. The probability that your present project is somehow related to one or more HTTP post requests, is pretty damn high. Most of the modern ... more


Thursday, 26 January, 2017 UTC

Understand NodeJs ExpressJs Routing

When I first started learning Nodejs, It took few days to properly understand how routes work in an ExpressJs backend. In the previous article, I discussed how to get started with Nodejs ExpressJs Application. Here, We will learn how to use NodeJs ExpressJs ... more


Friday, 20 January, 2017 UTC

Step by step tutorial NodeJs ExpressJs MongoDB App for Beginners (April 2017)

This tutorial is written specifically for people who are planning to learn Nodejs. You may have programmed in PHP before, and willing to start your career in nodejs, then It will surely help you. I will try my best to explain you each thing in detail. ... more