Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
cf-bindings-proxy
Advanced tools
Experimental proxy for interfacing with bindings in projects targeting Cloudflare Pages
Experimental proxy for interfacing with bindings
in projects targeting Cloudflare Pages.
This library was written to accompany @cloudflare/next-on-pages
, so that you can use bindings when developing Next.js apps locally through next dev
.
It is intended to be used for frameworks that do not support Cloudflare bindings in a fast HMR environment.
Add the library to your project.
npm add cf-bindings-proxy
In a separate terminal window, run the following command to start the proxy, passing through your bindings are arguments.
npx cf-bindings-proxy --kv=MY_KV
In your project's code, import the binding
function from cf-bindings-proxy
and use it to interact with your bindings.
import { binding } from 'cf-bindings-proxy';
const value = await binding<KVNamespace>('MY_KV').get('key');
It is also possible to specify a custom fallback for use in production instead of process.env
.
import { binding } from 'cf-bindings-proxy';
const value = await binding<KVNamespace>('MY_KV', { fallback: platform.env }).get('key');
Starting the proxy spawns an instance of Wrangler using a template, passing through any commands and bindings that are supplied to the CLI. It uses port 8799
.
In development mode, when interacting with a binding through the binding('BINDING_NAME')
function, it sends HTTP requests to the proxy. These HTTP requests contain destructured function calls, which are then reconstructed and executed inside the proxy. The result is then returned to the client.
When building for production, binding('BINDING_NAME')
simply calls process.env.BINDING_NAME
to retrieve the binding instead. If you wish to use a custom fallback like platform.env
instead of process.env
, you can pass a custom fallback to the binding call with binding('BINDING_NAME', { fallback: platform.env })
.
Calls to binding('BINDING_NAME')
will try to use the proxy when either of the following two conditions are met:
ENABLE_BINDINGS_PROXY
environment variable is set to true
.
ORDISABLE_BINDINGS_PROXY
environment variable is not set and NODE_ENV
is set to development
.Note: Functionality and bindings not listed below may still work but have not been tested.
FAQs
Experimental proxy for interfacing with bindings in projects targeting Cloudflare Pages
We found that cf-bindings-proxy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.