-
Notifications
You must be signed in to change notification settings - Fork 726
Closed
Description
π Feature Proposal
@elastic/elasticsearch
is currently a CommonJS module. While CommonJS isn't going away any time soon, ECMAScript Modules are very much "the future" of the JavaScript ecosystem. As the community moves in this direction, it may be wise for us to consider moving this library in the same way.
To accommodate both CJS and ESM users, we might want to create an ES module wrapper that exports both a CJS and ESM version of the library.
At the very least, as suggested in #1281, it would be good to make the type of the module explicit in package.json
if we decide to remain with CJS for the time being.
Motivation
This will allow the library to work in Deno, and enable asynchronous module loading in Deno and Node.js.
sveisvei, gjfLeo, pierreinglebert, Curo-Dev and Tammibriggs