Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to do ESM dynamic export?

The following exports code used to work when I set the project as CommonJS

let group: keyof typeof cloudFunctions;
// loop through all groups built above and export them
for (group in cloudFunctions) {
  if (group != null) {
    exports[group] = cloudFunctions[group];
  }
}

Now, I am trying to convert this to ESM Module so I use ESM export, instead of CJS exports but it keeps throwing me error.

let group: keyof typeof cloudFunctions;
// loop through all groups built above and export them
for (group in cloudFunctions) {
  if (group != null) {
    export[group] = cloudFunctions[group];
  }
}

The only way I can workaround it is to declare this statically and manually one by one OUTSIDE the for loop at the top-level.

Question: How can I adopt the similar structure I had in CJS in ESM so that I can programmatically export the functions stored inside a variable?

like image 932
Cupid Chan Avatar asked Jan 24 '26 15:01

Cupid Chan


1 Answers

You can't do dynamic export with ESM. ESM requires exports to be statically analyzable.

Instead, you can export an object that you define dynamically:

export const someName = {...cloudFunctions};

...or perhaps just export cloudFunctions directly, since it appears to already have what you want to export:

export { cloudFunctions };

Code importing from the module will not be able to directly import properties from the object you export; instead, it will have to import the object and then use the desired property. For instance, if I assume you do direclty export cloudFunctions:

...then to import (say) the whatever function, then assuming you used someName as the name of the export:

import { someName } from "./the-module";
const { whatever } = someName;

// ...code using `whatever`...
like image 175
T.J. Crowder Avatar answered Jan 26 '26 04:01

T.J. Crowder



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!