Major releases bring major innovations. This is also true for Node.js: With the release of Node 14, the warning that was previously issued when using ES modules is no longer needed. Already in Node 13, the flag that was previously required for this was dropped. Now the integration of the standard module format has reached the next step on the way to a fixed feature in Node. However, the support of ES Modules remains experimental, as the release notes explain.
At present, this means above all that changes to the implementation are not subject to the semantic versioning scheme, but that far-reaching adaptations are also possible in minor versions. As Bethany Nicolle Griggs explains in the release notes, the node implementation of the ESM differs from that of other environments. Especially in transplicated modules, it might be necessary to make manual adjustments in order to use them in Node.js.
SEE ALSO: The new JavaScript Magazine – now available as free download
Node 14: Upgrades for ESM, diagnostic reports and ECMAScript
The second major change in Node.js 14 is that the diagnostic reports that were experimentally introduced in Node 12 are now marked as a stable feature. Diagnostic reports can be used to generate reports on the behavior of node applications on demand or to link them to specific events. This should make it easier to detect and handle problems, for example in the context of crashes or performance. The CLI flag for activating the reports is no longer required when the reports are marked as stable features.
Source : JAXenter