ES Modules in NodeJS

ES Modules were introduced in ECMAScript 2015, and can now be used in most modern browsers. NodeJS uses the CommonJS module system, but work is currently underway to finalise ES Modules support in NodesJS, and you can use it today by using experimental flags, or a pre-processor such as Babel.js.

Go To Post

Lazy Loading images with fade in

Loading large images can cause a delay in the initial paint for your page, a possible solution for this is to show a placeholder image instead then swap in the original image after loading.

Go To Post

VS Code

My preferred editor is VS Code by Microsoft, which recently was voted #1 developer tool in the 2018 Stack Overflow Developers survey. It is fast, stable, feature-rich and has an extensive marketplace of extensions to add to the built-in features.

Go To Post