You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the package uses bare specifiers to import Node.js core modules. This prevents the package from being used in environments like Cloudflare Workers Runtime, which don't support Node.js APIs.
To improve compatibility, we should update our imports to use the node: prefix for all Node.js core modules.
Currently, the package uses bare specifiers to import Node.js core modules. This prevents the package from being used in environments like Cloudflare Workers Runtime, which don't support Node.js APIs.
To improve compatibility, we should update our imports to use the
node:
prefix for all Node.js core modules.Example change:
https://developers.cloudflare.com/workers/runtime-apis/nodejs/
The text was updated successfully, but these errors were encountered: