Development

Using Webpack Dev Server

Using Webpack Dev Server

  • July 4, 2017

If you have been doing front-end development recently, the chances are that you would have heard about Webpack multiple times. In fact, most of the starter kits are built using Webpack Dev Server. The implementation and configuration are hidden by wrappers above it so that the developer continues working on...

Hello GraphQL using Express

Hello GraphQL using Express

  • June 9, 2017

GraphQL is a query language and a runtime for data querying over an API. It is something that you put in between your front-end application and a backend data service. The first question that comes across in people’s mind is that we already have REST, what problem can then GraphQL...

Parsing JSON in Android Tutorial

Parsing JSON in Android Tutorial

  • March 2, 2017

Note: If you are interested in seeing the implementation of this using retrofit, refer to our other post about Using Retrofit 2 for parsing JSON in Android. I recently got back to developing native Android applications after a long time and the first task of any large-scale application begins with...

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...

Virtual Reality comes closer to the Web with React VR

Virtual Reality comes closer to the Web with React VR

  • January 3, 2017

At Oculus Connect 3, Oculus, the virtual reality giant, announced that they are working on something pretty awesome regarding virtual reality! They like to call it as “WebVR” ie. Virtual Reality for the Web! This certainly is something which should excite a virtual reality developer. Though it is worth mentioning that this is...

Javascript build tools: Why do we need one?

Javascript build tools: Why do we need one?

  • July 28, 2016

If I had asked a web developer a few years ago about using a build tool for their web project, the developer would have mocked me for even thinking about using a javascript build tool. It is a common notion that Javascript is not compiled and is interpreted by the...