Skip to content

Commit bc3d802

Browse files
committed
Using Workers KV instead of KV for links.
1 parent 62ca314 commit bc3d802

File tree

29 files changed

+40
-40
lines changed

29 files changed

+40
-40
lines changed

src/content/apps/index.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ entries:
305305
name: Atinotes
306306
description: Store Markdown notes in Cloudflare KV with this full-stack application made with Nuxt & deployed on Cloudflare Pages.
307307
tags: [Nuxt]
308-
products: [Pages, KV]
308+
products: [Pages, Workers KV]
309309
languages: [TypeScript]
310310
cloudflare: false
311311
updated: 2024-08-12

src/content/docs/d1/reference/community-projects.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Staff Directory is a demo project using D1, [HonoX](https://github.com/honojs/ho
102102

103103
### NuxtHub
104104

105-
`NuxtHub` is a Nuxt module that brings Cloudflare Worker bindings into your Nuxt application with no configuration. It leverages the [Wrangler Platform Proxy](/workers/wrangler/api/#getplatformproxy) in development and direct binding in production to interact with [D1](/d1/), [KV](/kv/) and [R2](/r2/) with server composables (`hubDatabase()`, `hubKV()` and `hubBlob()`).
105+
`NuxtHub` is a Nuxt module that brings Cloudflare Worker bindings into your Nuxt application with no configuration. It leverages the [Wrangler Platform Proxy](/workers/wrangler/api/#getplatformproxy) in development and direct binding in production to interact with [D1](/d1/), [Workers KV](/kv/) and [R2](/r2/) with server composables (`hubDatabase()`, `hubKV()` and `hubBlob()`).
106106

107107
`NuxtHub` also provides a way to use your remote D1 database in development using the `npx nuxt dev --remote` command.
108108

src/content/docs/fundamentals/setup/manage-members/roles.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Account-scoped roles apply across an entire Cloudflare account, and through all
6666
| Vectorize Readonly | Can read [Vectorize](/vectorize/) configurations. |
6767
| Waiting Room Admin | Can edit [Waiting Room](/waiting-room/) configuration. |
6868
| Waiting Room Read | Can read [Waiting Room](/waiting-room/) configuration. |
69-
| Workers Admin | Can edit Cloudflare [Workers](/workers/), [Pages](/pages/), [Durable Objects](/durable-objects/), [KV](/kv/) and [R2](/r2/). Also provides read access to Zones, [Zone Analytics](/analytics/account-and-zone-analytics/zone-analytics/) and [Page Rules](/rules/). |
69+
| Workers Admin | Can edit Cloudflare [Workers](/workers/), [Pages](/pages/), [Durable Objects](/durable-objects/), [Workers KV](/kv/) and [R2](/r2/). Also provides read access to Zones, [Zone Analytics](/analytics/account-and-zone-analytics/zone-analytics/) and [Page Rules](/rules/). |
7070
| Zaraz Admin | Can edit and publish [Zaraz](/zaraz/) configuration. |
7171
| Zaraz Edit | Can edit [Zaraz](/zaraz/) configuration. |
7272
| Zaraz Readonly | Can read [Zaraz](/zaraz/) configuration. |

src/content/docs/pages/framework-guides/deploy-a-nuxt-site.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Additionally, you will have access to [preview deployments](/pages/configuration
8888

8989
## Use bindings in your Nuxt application
9090

91-
A [binding](/pages/functions/bindings/) allows your application to interact with Cloudflare developer products, such as [KV](/kv/), [Durable Objects](/durable-objects/), [R2](/r2/), and [D1](/d1/).
91+
A [binding](/pages/functions/bindings/) allows your application to interact with Cloudflare developer products, such as [Workers KV](/kv/), [Durable Objects](/durable-objects/), [R2](/r2/), and [D1](/d1/).
9292

9393
If you intend to use bindings in your project, you must first set up your bindings for local and remote development.
9494

src/content/docs/pages/framework-guides/deploy-a-qwik-site.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Every time you commit new code to your Qwik site, Cloudflare Pages will automati
6060

6161
## Use bindings in your Qwik application
6262

63-
A [binding](/pages/functions/bindings/) allows your application to interact with Cloudflare developer products, such as [KV](/kv/concepts/how-kv-works/), [Durable Object](/durable-objects/), [R2](/r2/), and [D1](https://blog.cloudflare.com/introducing-d1/).
63+
A [binding](/pages/functions/bindings/) allows your application to interact with Cloudflare developer products, such as [Workers KV](/kv/concepts/how-kv-works/), [Durable Object](/durable-objects/), [R2](/r2/), and [D1](https://blog.cloudflare.com/introducing-d1/).
6464

6565
In QwikCity, add server-side code via [routeLoaders](https://qwik.builder.io/qwikcity/route-loader/) and [actions](https://qwik.builder.io/qwikcity/action/). Then access bindings set for your application via the `platform` object provided by the framework.
6666

src/content/docs/pages/framework-guides/deploy-an-analog-site.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The final step of the C3 workflow will offer to deploy your application to Cloud
3737

3838
## Bindings
3939

40-
A [binding](/pages/functions/bindings/) allows your application to interact with Cloudflare developer products, such as [KV](/kv/), [Durable Objects](/durable-objects/), [R2](/r2/), and [D1](/d1/).
40+
A [binding](/pages/functions/bindings/) allows your application to interact with Cloudflare developer products, such as [Workers KV](/kv/), [Durable Objects](/durable-objects/), [R2](/r2/), and [D1](/d1/).
4141

4242
If you intend to use bindings in your project, you must first set up your bindings for local and remote development.
4343

src/content/docs/pages/framework-guides/deploy-an-astro-site.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export default defineConfig({
103103

104104
## Use bindings in your Astro application
105105

106-
A [binding](/pages/functions/bindings/) allows your application to interact with Cloudflare developer products, such as [KV](/kv/concepts/how-kv-works/), [Durable Object](/durable-objects/), [R2](/r2/), and [D1](https://blog.cloudflare.com/introducing-d1/).
106+
A [binding](/pages/functions/bindings/) allows your application to interact with Cloudflare developer products, such as [Workers KV](/kv/concepts/how-kv-works/), [Durable Object](/durable-objects/), [R2](/r2/), and [D1](https://blog.cloudflare.com/introducing-d1/).
107107

108108
Use bindings in Astro components and API routes by using `context.locals` from [Astro Middleware](https://docs.astro.build/en/guides/middleware/) to access the Cloudflare runtime which amongst other fields contains the Cloudflare's environment and consecutively any bindings set for your application.
109109

src/content/docs/pages/functions/bindings.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar:
77

88
import { Render, TabItem, Tabs } from "~/components";
99

10-
A [binding](/workers/runtime-apis/bindings/) enables your Pages Functions to interact with resources on the Cloudflare developer platform. Use bindings to integrate your Pages Functions with Cloudflare resources like [KV](/kv/concepts/how-kv-works/), [Durable Objects](/durable-objects/), [R2](/r2/), and [D1](/d1/). You can set bindings for both production and preview environments.
10+
A [binding](/workers/runtime-apis/bindings/) enables your Pages Functions to interact with resources on the Cloudflare developer platform. Use bindings to integrate your Pages Functions with Cloudflare resources like [Workers KV](/kv/concepts/how-kv-works/), [Durable Objects](/durable-objects/), [R2](/r2/), and [D1](/d1/). You can set bindings for both production and preview environments.
1111

1212
This guide will instruct you on configuring a binding for your Pages Function. You must already have a Cloudflare Developer Platform resource set up to continue.
1313

@@ -683,7 +683,7 @@ export const onRequest: PagesFunction<Env> = async (context) => {
683683
};
684684
```
685685

686-
</TabItem> </Tabs>
686+
</TabItem> </Tabs>
687687

688688
### Interact with your Hyperdrive binding locally
689689

src/content/docs/pages/functions/plugins/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ In this example, you will build a Pages Plugin and then include it in a project.
4343
The first Plugin should:
4444

4545
* intercept HTML forms.
46-
* store the form submission in [KV](/kv/api/).
46+
* store the form submission in [Workers KV](/kv/api/).
4747
* respond to submissions with a developer's custom response.
4848

4949
### 1. Create a new Pages Plugin

src/content/docs/pages/functions/wrangler-configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ You can configure limits for your Pages project in the same way you can for Work
385385

386386
## Bindings
387387

388-
A [binding](/pages/functions/bindings/) enables your Pages Functions to interact with resources on the Cloudflare Developer Platform. Use bindings to integrate your Pages Functions with Cloudflare resources like [KV](/kv/), [Durable Objects](/durable-objects/), [R2](/r2/), and [D1](/d1/). You can set bindings for both production and preview environments.
388+
A [binding](/pages/functions/bindings/) enables your Pages Functions to interact with resources on the Cloudflare Developer Platform. Use bindings to integrate your Pages Functions with Cloudflare resources like [Workers KV](/kv/), [Durable Objects](/durable-objects/), [R2](/r2/), and [D1](/d1/). You can set bindings for both production and preview environments.
389389

390390
### D1 databases
391391

0 commit comments

Comments
 (0)