Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bubblydoo/cloudflare-workers-compat
Compile your Node and Deno modules for use inside Cloudflare Workers
https://github.com/bubblydoo/cloudflare-workers-compat
Last synced: 8 days ago
JSON representation
Compile your Node and Deno modules for use inside Cloudflare Workers
- Host: GitHub
- URL: https://github.com/bubblydoo/cloudflare-workers-compat
- Owner: bubblydoo
- Created: 2022-06-15T13:57:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-25T17:54:44.000Z (12 months ago)
- Last Synced: 2024-12-24T21:33:53.069Z (15 days ago)
- Language: TypeScript
- Homepage:
- Size: 547 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
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](https://github.com/bubblydoo/cloudflare-workers-postgres-client)).
Next to that `eval` and `new Function` are also replaced with warning functions.
```bash
npm i cloudflare-workers-compat # do not install as a dev dependency
```To use it, use esbuild:
```ts
// build.mjsimport { build } from "esbuild";
import bundlerConfig from "cloudflare-workers-compat/bundler-config";
import { aliasPlugin, outputReplacesPlugin, aliasWithPrefixPlugin } from "cloudflare-workers-compat/esbuild";const compatConfig = await bundlerConfig({
// replaces node builtins like `assert`, `util`, ...
nodeBuiltinModules: true,
// replaces Node globals like `global`
nodeGlobals: true,
// replaces `eval` and `new Function` with warning functions
workerIncompatibles: true,
// replaces browser globals like `navigator`
browserGlobals: true,
// keeps supported node modules external and prefixes them with `node:`,
// for when the "nodejs_compat" compatibility flag is enabled
workersNodejsCompat: true,
});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` (through `assert`)
- `buffer` (through `buffer`)
- `console` (through `console-browserify`)
- `crypto` (through `crypto-browserify`)
- `events` (through `https://deno.land/std/node/events.ts`)
- `fs` (empty object)
- `os` (through `os-browserify/browser`)
- `path` (through `path-browserify`)
- `process` (through `https://deno.land/std/node/process.ts`)
- `querystring` (through `qs`)
- `stream` (through `stream-browserify`)
- `string_decoder` (through `https://deno.land/std/node/string_decoder.ts`)
- `timers` (exports `setTimeout`, `clearTimeout`, `setInterval`, `clearInterval`)
- `tty` (through `https://deno.land/std/node/tty.ts`)
- `url` (through `url-shim`)
- `util` (through `https://deno.land/std/node/util.ts`)