Skip to content

Commit 75426ea

Browse files
committed
updates bindings comparison, small changes to wording
1 parent faebe50 commit 75426ea

File tree

2 files changed

+21
-25
lines changed

2 files changed

+21
-25
lines changed

src/content/docs/cloudflare-for-platforms/workers-for-platforms/get-started/developing-with-wrangler.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ curl http://localhost:8600
202202

203203
## Remote dispatch namespaces
204204

205-
You can configure dispatch namespace bindings to connect to remote dispatch namespaces during local development by setting `experimental_remote = true`:
205+
You can configure dispatch namespace bindings to connect to remote dispatch namespaces during local development by setting [`experimental_remote = true`](/workers/development-testing/#remote-bindings):
206206

207207
<WranglerConfig>
208208
```jsonc title="wrangler.jsonc"
@@ -218,6 +218,6 @@ You can configure dispatch namespace bindings to connect to remote dispatch name
218218
```
219219
</WranglerConfig>
220220

221-
This allows you to run your [dynamic dispatch Worker](/cloudflare-for-platforms/workers-for-platforms/reference/how-workers-for-platforms-works/#dynamic-dispatch-worker) locally, while connecting it to your remote dispatch namespace binding. This allows you to test changes to your core dispatching logic against real, deployed [user Workers](/cloudflare-for-platforms/workers-for-platforms/reference/how-workers-for-platforms-works/#user-workers).
221+
This allows you to run your [dynamic dispatch Worker](/cloudflare-for-platforms/workers-for-platforms/reference/how-workers-for-platforms-works/#dynamic-dispatch-worker) locally, while connecting it to your remote dispatch namespace binding. You can then test changes to your core dispatching logic against real, deployed [user Workers](/cloudflare-for-platforms/workers-for-platforms/reference/how-workers-for-platforms-works/#user-workers).
222222

223223
For more information about remote bindings during local development, refer to [remote bindings documentation](/workers/development-testing/#remote-bindings).

src/content/partials/workers/bindings_per_env.mdx

Lines changed: 19 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@ During local development, your Worker code always executes locally and bindings
88

99
You can configure [**remote bindings** during local development](/workers/development-testing/#remote-bindings), allowing your bindings to connect to a deployed resource on a per-binding basis.
1010

11-
| Binding | Local simulations | Remote binding connections |
12-
| --------------------------------------- | :---------------: | :-------------------------------------------------------------------: |
13-
| **AI** || [**Recommended**](/workers/development-testing/#workers-ai) |
14-
| **Assets** || |
15-
| **Analytics Engine** | [^4] | |
16-
| **Browser Rendering** || [**Recommended**](/workers/development-testing/#browser-rendering) |
17-
| **D1** || |
18-
| **Durable Objects** || |
19-
| **Email Bindings** || |
20-
| **Hyperdrive** | [^2] | |
21-
| **Images** || [**Recommended**](/workers/development-testing/#images) |
22-
| **KV** || |
23-
| **mTLS** || [**Recommended**](/workers/development-testing/#mtls) |
24-
| **Queues** || |
25-
| **R2** || |
26-
| **Rate Limiting** || |
27-
| **Service Bindings (multiple Workers)** || |
28-
| **Vectorize** || [**Recommended**](/workers/development-testing/#vectorize) |
29-
| **Workflows** || |
11+
| Binding | Local simulations | Remote binding connections |
12+
| --------------------------------------- | :---------------: | :------------------------: |
13+
| **AI** || |
14+
| **Assets** || |
15+
| **Analytics Engine** | | |
16+
| **Browser Rendering** || |
17+
| **D1** || |
18+
| **Durable Objects** || |
19+
| **Email Bindings** || |
20+
| **Hyperdrive** | | |
21+
| **Images** || |
22+
| **KV** || |
23+
| **mTLS** || |
24+
| **Queues** || |
25+
| **R2** || |
26+
| **Rate Limiting** || |
27+
| **Service Bindings (multiple Workers)** || |
28+
| **Vectorize** || |
29+
| **Workflows** || |
3030

3131
- **Local simulations:** Bindings connect to local resource simulations. Supported in [`wrangler dev`](/workers/wrangler/commands/#dev) and the [Cloudflare Vite plugin](/workers/vite-plugin/).
3232

@@ -58,8 +58,4 @@ Supported only in [`wrangler dev --remote`](/workers/wrangler/commands/#dev) - t
5858
| **Vectorize** ||
5959
| **Workflows** ||
6060

61-
[^2]: Using Hyperdrive with local simulations allows you to connect to a local database (running on `localhost`) but you cannot connect to a remote database. To connect to a remote database, use `wrangler dev --remote`.
62-
63-
[^4]: Analytics Engine is supported with local simulations in Wrangler but is not currently supported in the Vite plugin.
64-
6561
---

0 commit comments

Comments
 (0)