JavaScript modules in workers
Widely availableThe Worker()
constructor accepts { type: "module" }
to load scripts that use import
and export
. Also known as ECMAScript modules or ESM in workers.
The Worker()
constructor accepts { type: "module" }
to load scripts that use import
and export
. Also known as ECMAScript modules or ESM in workers.