Minify JavaScript Using Terser
Terser is a javascript compressor and mangler supporting ES6+ specification. In this tutorial, you will get to know how to use terser to minify or compress javascript. [...]
Terser is a javascript compressor and mangler supporting ES6+ specification. In this tutorial, you will get to know how to use terser to minify or compress javascript. [...]
In this tutorial, I am going to show you how you can deploy a react app on netlify from an existing git repository of yours. [...]
Anchors are nothing but id attributes applied to an element to link to it using href attribute internally on the same page. [...]
Writing CSS from scratch along with adding vendor prefixes can be a daunting task if done manually. Vendor-prefixes can be easily added using the autoprefixer plugin of PostCSS. [...]
Shortcodes are used to invoke a particular function which returns some html or any other data based on the information that is passed. They are mainly used to reuse html templates which require some preprocessing. [...]
Here are the 5 most useful Visual Studio Code extensions to improve your workflow! [...]
Vercel is a platform to host frontend applications and static sites but you can also host an express app using serverless functions. [...]
Optional Chaining in JavaScript is used to return undefined for accessing an object property that doesn't exist and whose parent property is nullish (null or undefined). [...]
SASS extends CSS which means that you can have all the features of CSS plus the features of SASS just like a cherry on top of a cake! [...]
You might be familiar with functions in JavaScript. An IIFE is a special type of function which is invoked implicitly. [...]