---
title: Remote bindings GA - Connect to remote resources (D1, KV, R2, etc.) during local development
description: You can now connect to R2 buckets, D1 databases, and other resources running on Cloudflare, while running your Worker's code locally, on your own machine.
image: https://developers.cloudflare.com/changelog-preview.png
---

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Remote bindings GA - Connect to remote resources (D1, KV, R2, etc.) during local development

Sep 16, 2025 

[ Workers ](https://developers.cloudflare.com/workers/) 

Three months ago [we announced the public beta](https://developers.cloudflare.com/changelog/2025-06-18-remote-bindings-beta/) of [remote bindings](https://developers.cloudflare.com/workers/development-testing/#remote-bindings) for local development. Now, we're excited to say that it's available for everyone in Wrangler, Vite, and Vitest without using an experimental flag!

With remote bindings, you can now connect to deployed resources like [R2 buckets](https://developers.cloudflare.com/r2/) and [D1 databases](https://developers.cloudflare.com/d1/) while running Worker code on your local machine. This means you can test your local code changes against real data and services, without the overhead of deploying for each iteration.

#### Example configuration

To enable remote bindings, add `"remote" : true` to each binding that you want to rely on a remote resource running on Cloudflare:

* [  wrangler.jsonc ](#tab-panel-1348)
* [  wrangler.toml ](#tab-panel-1349)

JSONC

```

{

  "name": "my-worker",

  // Set this to today's date

  "compatibility_date": "2026-04-22",


  "r2_buckets": [

    {

      "bucket_name": "screenshots-bucket",

      "binding": "screenshots_bucket",

      "remote": true,

    },

  ],

}


```

Explain Code

TOML

```

name = "my-worker"

# Set this to today's date

compatibility_date = "2026-04-22"


[[r2_buckets]]

bucket_name = "screenshots-bucket"

binding = "screenshots_bucket"

remote = true


```

When remote bindings are configured, your Worker **still executes locally**, but all binding calls are proxied to the deployed resource that runs on Cloudflare's network.

**You can [try out remote bindings](https://developers.cloudflare.com/workers/development-testing/#remote-bindings) for local development today with:**

* [Wrangler v4.37.0](https://developers.cloudflare.com/workers/wrangler/)
* The [Cloudflare Vite Plugin](https://developers.cloudflare.com/workers/vite-plugin/)
* The [Cloudflare Vitest Plugin](https://developers.cloudflare.com/workers/testing/vitest-integration/)