Sshadowtime2000inh.shadowtime2000.com路Jan 31, 2021 路 4 min readUsing Data URLs to Load Dependencies in DenoRecently Deno released 1.7.0 which had support for data URLs. I think this is a pretty cool way to dynamically create modules on the fly when paired with import(). This could be used to dynamically load all the dependencies we want to use in our file...00
Sshadowtime2000inh.shadowtime2000.com路Jan 30, 2021 路 4 min readWhat is Cache Busting?Cache busting is a technique so that browsers can have long caches on files while having them reload files when they change. Before you can understand that, you have to understand how caching works with websites. Caching Your Website When you want br...00
Sshadowtime2000inh.shadowtime2000.com路Jan 27, 2021 路 3 min readTagged Template Literals in a NutshellHi, in this post I will be writing about tagged template literals. Tagged template literals are like normal template literals but with more control given to functions you pass these as parameters to. Syntax The syntax for tagged template literals is ...00
Sshadowtime2000inh.shadowtime2000.com路Jan 17, 2021 路 1 min readSimple Chakra UI CardSimple Chakra UI Card I am currently creating a blog with Chakra UI, so I need a card which can be created with it. This is just basically a small snippet. The Card function BlogPost() { return ( <Box maxW="sm" borderWidth="1px" borderRadius="l...00
Sshadowtime2000inh.shadowtime2000.com路Jan 12, 2021 路 1 min readList of JS Bundlers 馃殌List of JS Bundlers In my previous article about ES6 tree shaking a reader commented suggesting that I add a list of bundlers that support tree shaking to the bottom of the article. Instead I am going to create a list of JS bundlers. Webpack Rollup...00