Enabling#¶
Node.js has two module systems: CommonJS modules and ECMAScript modules.
Authors can tell Node.js to use the ECMAScript modules loader via the .mjs
file extension, the package.json
"type"
field, or the --input-type
flag. Outside of those cases, Node.js will use the CommonJS module loader. See Determining module system for more details.