Javascript and more...

Svelte - Setup

Svelte is a new JS framework in town, which does things a bit differently than React and Vue. Instead of the work these frameworks do in browser, svelte moves most of the heavy lifting to compile time, to improve performance.Its use in embeddable devices...

ES6

ES6 - Native Modules

Defining modules were not available in Javascript earlier, compared to other languages. requirejs and other libraries were used to overcome this. However, ES6 introduced a module loader API which enables native module loading in javascript. Let's look at how to implement native modules. Look at...