Improve Accessibility by Invisible Unclickable Link

Accessibility is one of the most important things to consider when developing a site, but it is often overlooked. For a Web site to have better accessibility it must have a good Accessibility score and can be accessed easily by all users. Here we will be looking into one such technique which almost all the…

Useful JavaScript Data Grid Libraries

Although there exist numerous data grid libraries around the world, not all may fit our app and business needs. First, let’s understand what a data grid is. Data grids are table components that load, present, and manipulate large data sets. Data grids are often designed to be efficient and streamlined due to the enormous amount…

5 min read

Authentication for your application

Authentication A process or act of proving something to be valid in general or verifying the identity of a particular user or validity of a process in application terms is what authentication is. But how exactly does one prove to be the person they claim to be in order to access the application or do specific…

6 min read

Bootstrapping React app with Webpack + Babel from Scratch

Webpack is a popular module bundling system built on top of Node. js. It can handle the combination and minification of JavaScript and CSS files and other assets such as image files, fonts, etc. through the use of plugins. Before we jump into webpack here’s the full list of features we are going to set…

12 min read