Blogs by "trishul"

Trishul Goel

Trishul Goel is a frontend developer, loves to talk about modern Javascript, frontend architecture, opensource, promotes PWAs (#teamWeb) and is expert in developing browser extensions..
@trishulgoel

Rainbow text with CSS

2024-02-11

Some designers can not get enough of colors and want the text not to be in solid color but rainbow colors. Traditionally developers achieve…

Identifying non ES5 packages

2021-08-15

To the delight of Frontend developers around the globe, Microsoft finally decided to kill its dreaded browser Internet explorer. But it’s…

Resource coverage in the browser

2020-06-17

One of the performance wins for the websites is the deferred loading of JS or CSS which are not required at the first load. While starting a…

Lazyload images the browser way

2020-02-21

One of the biggest performance wins for image-extensive webpages is . Normally, the browser fetches all the required resources from the…

Sleep function in Javascript

2020-02-16

There are times while writing javascript, when we might want to halt the execution of Javascript for a small period say 2 seconds. May be…

Optional Chaining

2020-01-17

has bugged every javascript developer enough. While expecting a response from APIs, we need to add several to make sure our code doesn’t…

Get started with web workers

2019-12-28

Javascript is single-threaded ie. all of the javascript code written is executed in a single thread. All the functions are executed…

Offline caching with serviceworkers

2019-12-15

Caching always has proven to be the winner when it comes to performance. Browser by default caches the resources on its end, but to get…

Handle Cancel Click on File Input

2017-03-01

Ever Tried capturing cancel event on Browse file input type in HTML, tbh there is no direct way to do so :( But there is a workaround adding…