web development

How to setup ESLint for Typescript code

How to setup ESLint for Typescript code

  • March 19, 2019

The Typescript team recently announced its road map. Interestingly, they have decided to not focus on TSLint any more and focus their efforts on ESLint for Typescript linting instead. This is a great thing for the community overall since ESLint becomes the defacto linting tool going forward. In this post,...

How to setup Typescript with Babel and Webpack

How to setup Typescript with Babel and Webpack

  • February 12, 2019

After seeing a lot of projects making the move to Typescript, I recently started to give it a shot as well. For people who are not aware of typescript, it is a wrapper over javascript which has built-in support for types. We get static checking for our code as well...

Webpack: An Introduction

Webpack: An Introduction

  • January 12, 2017

Before coming to the discussion about Webpack, let us first discuss how web development has evolved over the past few years and why we even need a build tool for something like Javascript. The problem with loading javascript files The only way to load javascript in an HTML document is...

Grunt Vs Gulp Vs npm: Javascript build wars

Grunt Vs Gulp Vs npm: Javascript build wars

  • January 12, 2016

You might have already made the choice among Grunt Vs Gulp Vs npm already. Or you might be totally confused what all these are. All these are automation tools used during or after development. Some people might be confused that why do we even need a build process for javascript?...