Skip to content

Commit 43cf3e8

Browse files
committed
fix links
1 parent 23ec47d commit 43cf3e8

File tree

13 files changed

+18
-24
lines changed

13 files changed

+18
-24
lines changed

src/content/docs/workers/miniflare/core/compatibility.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ order: 8
33
title: "📅 Compatibility Dates"
44
---
55

6-
- [Compatibility Dates Reference](/workers/platform/compatibility-dates)
6+
- [Compatibility Dates Reference](/workers/configuration/compatibility-dates)
77

88
## Compatibility Dates
99

src/content/docs/workers/miniflare/core/fetch.mdx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ order: 0
33
title: "📨 Fetch Events"
44
---
55

6-
- [`FetchEvent` Reference](/workers/runtime-apis/fetch-event)
7-
- [`FetchEvent` Lifecycle](/workers/learning/fetch-event-lifecycle)
8-
- [`addEventListener` Reference](/workers/runtime-apis/add-event-listener)
6+
- [`FetchEvent` Reference](/workers/runtime-apis/handlers/fetch/)
97

108
## HTTP Requests
119

@@ -15,9 +13,7 @@ Whenever an HTTP request is made, a `Request` object is dispatched to your worke
1513
Miniflare will log the method, path, status, and the time it took to respond.
1614

1715
If the Worker throws an error whilst generating a response, an error page
18-
containing the stack trace is returned instead. You can use
19-
[🗺 Source Maps](/developing/source-maps) to make these point to your source
20-
files.
16+
containing the stack trace is returned instead.
2117

2218
## Dispatching Events
2319

src/content/docs/workers/miniflare/core/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ order: 3
33
title: "📚 Modules"
44
---
55

6-
- [Modules Reference](/workers/cli-wrangler/configuration#modules)
6+
- [Modules Reference](/workers/reference/migrate-to-module-workers/)
77

88
## Enabling Modules
99

src/content/docs/workers/miniflare/core/queues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const mf = new Miniflare({
3636

3737
## Manipulating Outside Workers
3838

39-
For testing, it can be valuable to interact with Queues outside a Worker. You can do this by using the [`workers` option](/core/multiple-workers) to run multiple Workers in the same instance:
39+
For testing, it can be valuable to interact with Queues outside a Worker. You can do this by using the `workers` option to run multiple Workers in the same instance:
4040

4141
```js
4242
const mf = new Miniflare({

src/content/docs/workers/miniflare/core/scheduled.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ order: 1
33
title: "⏰ Scheduled Events"
44
---
55

6-
- [`ScheduledEvent` Reference](/workers/runtime-apis/scheduled-event)
7-
- [`addEventListener` Reference](/workers/runtime-apis/add-event-listener)
6+
- [`ScheduledEvent` Reference](/workers/runtime-apis/handlers/scheduled/)
87

98
## Cron Triggers
109

src/content/docs/workers/miniflare/core/standards.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ title: "🕸 Web Standards"
99
- [Request Reference](/workers/runtime-apis/request)
1010
- [Response Reference](/workers/runtime-apis/response)
1111
- [Streams Reference](/workers/runtime-apis/streams)
12-
- [Using Streams](/workers/learning/using-streams)
1312
- [Web Crypto Reference](/workers/runtime-apis/web-crypto)
1413

1514
## Mocking Outbound `fetch` Requests

src/content/docs/workers/miniflare/core/web-sockets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: "✉️ WebSockets"
44
---
55

66
- [WebSockets Reference](/workers/runtime-apis/websockets)
7-
- [Using WebSockets](/workers/learning/using-websockets)
7+
- [Using WebSockets](/workers/examples/websockets/)
88

99
## Server
1010

src/content/docs/workers/miniflare/developing/debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ debugging.
6363
## DevTools
6464

6565
Breakpoints can also be added via the Workers DevTools. For more information,
66-
[read the guide](/workers/observability/local-development-and-testing/#devtools)
66+
[read the guide](/workers/observability/dev-tools)
6767
in the Cloudflare Workers docs.

src/content/docs/workers/miniflare/get-started.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ order: 1
33
title: Get Started
44
---
55

6-
The Miniflare API allows you to dispatch events to workers without making actual HTTP requests, simulate connections between Workers, and interact with local emulations of storage products like [KV](/storage/kv), [R2](/storage/r2), and [Durable Objects](/storage/durable-objects). This makes it great for writing tests, or other advanced use cases where you need finer-grained control.
6+
The Miniflare API allows you to dispatch events to workers without making actual HTTP requests, simulate connections between Workers, and interact with local emulations of storage products like [KV](/workers/miniflare/storage/kv), [R2](/workers/miniflare/storage/r2), and [Durable Objects](/workers/miniflare/storage/durable-objects). This makes it great for writing tests, or other advanced use cases where you need finer-grained control.
77

88
## Installation
99

@@ -47,7 +47,7 @@ console.log(await res.text()); // Hello Miniflare!
4747
await mf.dispose();
4848
```
4949

50-
The [rest of these docs](/core/fetch) go into more detail on configuring
50+
The [rest of these docs](/workers/miniflare/core/fetch) go into more detail on configuring
5151
specific features.
5252

5353
### String and File Scripts
@@ -162,7 +162,7 @@ const queueResult = await worker.queue("needy", [
162162
console.log(queueResult); // { outcome: "ok", retryAll: true, ackAll: false, explicitRetries: [], explicitAcks: []}
163163
```
164164

165-
See [📨 Fetch Events](/core/fetch) and [⏰ Scheduled Events](/core/scheduled)
165+
See [📨 Fetch Events](/workers/miniflare/core/fetch) and [⏰ Scheduled Events](/workers/miniflare/core/scheduled)
166166
for more details.
167167

168168
### HTTP Server

src/content/docs/workers/miniflare/migrations/from-v2.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,12 +198,12 @@ open-source `workerd` runtime. See the [Getting Started guide for the new API do
198198
[`workerd`](https://github.com/cloudflare/workerd) server listening on the
199199
configured `host` and `port`, so these methods are redundant.
200200
- `dispatchScheduled()/startScheduled()`
201-
- The functionality of `dispatchScheduled` can now be done via `getWorker()`. For more information read the [scheduled events documentation](/core/scheduled#dispatching-events).
201+
- The functionality of `dispatchScheduled` can now be done via `getWorker()`. For more information read the [scheduled events documentation](/workers/miniflare/core/scheduled#dispatching-events).
202202
- `dispatchQueue()`
203203
- Use the `queue()` method on
204-
[service bindings](/workers/platform/bindings/about-service-bindings/)
204+
[service bindings](/workers/runtime-apis/bindings/service-bindings)
205205
or
206-
[queue producer bindings](/queues/platform/configuration/#producer)
206+
[queue producer bindings](/queues/configuration/configure-queues/#producer)
207207
instead.
208208
- `getGlobalScope()/getBindings()/getModuleExports()`
209209
- These methods returned objects from inside the Workers sandbox. Since

0 commit comments

Comments
 (0)