Hello, Modules!

57 · Sindre Sorhus · May 5, 2021, 6:01 p.m.
JavaScript Modules, also known as ESM, is finally here!It has already been available for some time in modern browsers, but we can now finally use it in Node.js, thanks to Node.js 10 becoming obsolete.As I wrote about earlier this year, I have personally been waiting for this day for 10 years.Here’s a good overview of JavaScript Modules.What are the benefits of JavaScript Modules over CommonJS?Unified syntax. Helps with teaching.Browser compatibility.Top-level await. Nice for scripts and command-...