
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
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');
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.
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 79 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.