Now that ECMAScript 2015 (or ES6) has a wider support in Node.js as well I have seen a few examples where people started to use the let
keyword when requiring packages. I wonder what is the difference (if any) or what is the recommended way or working with packages in ES6 & Node.js.
Essentially what's the difference between:
var express = require('express');`
and
let express = require('express');`