
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
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
The npm package cf-bindings-proxy receives a total of 6 weekly downloads. As such, cf-bindings-proxy popularity was classified as not popular.
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
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.