cloudflare-workers-compat
v0.1.15
Published
This module is highly experimental, and incomplete.
Downloads
1,544
Readme
Cloudflare Workers Compat
This module is highly experimental, and incomplete.
The goal is to provide shim modules for every builtin Node module, so that you can use existing Node code in Cloudflare Workers.
It compiles Deno's node compatibility layer to modules that are Cloudflare Workers-compatible, or uses other browser-compatible modules.
It also includes shims for Deno, in case you want to use a Deno module in a Cloudflare Worker (e.g. @bubblydoo/cloudflare-workers-postgres-client).
Next to that eval
and new Function
are also replaced with warning functions.
npm i cloudflare-workers-compat # do not install as a dev dependency
To use it, use esbuild:
// build.mjs
import bundlerConfig from "cloudflare-workers-compat/bundler-config";
import { aliasPlugin, outputReplacesPlugin, aliasWithPrefixPlugin } from "cloudflare-workers-compat/esbuild";
const compatConfig = await bundlerConfig({
nodeBuiltinModules: true, // replaces node builtins like `assert`, `util`, ...
nodeGlobals: true, // replaces Node globals like `global`
workerIncompatibles: true, // replaces `eval` and `new Function` with warning functions
browserGlobals: true, // replaces browser globals like `navigator`
workersNodejsCompat: true, // keeps node modules external and prefixes them with `node:`, when the "nodejs_compat" compatibility flag is enabled
});
await build({
...,
metafile: true,
define: compatConfig.define,
inject: compatConfig.inject,
externals: compatConfig.externals,
plugins: [
aliasPlugin(compatConfig.aliases),
outputReplacesPlugin(compatConfig.replaces)
aliasWithPrefixPlugin(compatConfig.aliasWithPrefix)
]
});
Shims are included for:
assert
(throughassert
)buffer
(throughbuffer
)console
(throughconsole-browserify
)crypto
(throughcrypto-browserify
)events
(throughhttps://deno.land/std/node/events.ts
)fs
(empty object)os
(throughos-browserify/browser
)path
(throughpath-browserify
)process
(throughhttps://deno.land/std/node/process.ts
)querystring
(throughqs
)stream
(throughstream-browserify
)string_decoder
(throughhttps://deno.land/std/node/string_decoder.ts
)timers
(exportssetTimeout
,clearTimeout
,setInterval
,clearInterval
)tty
(throughhttps://deno.land/std/node/tty.ts
)url
(throughurl-shim
)util
(throughhttps://deno.land/std/node/util.ts
)