Skip to content

Commit bf3ba3d

Browse files
committed
docs: remove headers in docs
1 parent e29ea91 commit bf3ba3d

File tree

8 files changed

+4
-36
lines changed

8 files changed

+4
-36
lines changed

docs/api/authentication.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
---
22
title: Authentication
33
order: 7
4-
head:
5-
- - title
6-
- {}
7-
- Authentication | NodeJS | Clients | Kurrent Docs
84
---
95

106
# Client x.509 certificate

docs/api/delete-stream.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
---
22
order: 9
3-
head:
4-
- - title
5-
- {}
6-
- Deleting Events | NodeJS | Clients | Kurrent Docs
73
---
84

95
# Deleting Events

docs/api/getting-started.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
---
22
order: 1
3-
head:
4-
- - title
5-
- {}
6-
- Getting Started | NodeJS | Clients | EventStoreDB Docs
73
---
84

95
# Getting started
@@ -153,20 +149,20 @@ const event = jsonEvent({
153149

154150
Each event in the database has its own unique identifier (UUID). The database uses it to ensure idempotent writes, but it only works if you specify the stream revision when appending events to the stream.
155151

156-
In the snippet below, we append the event to the stream `orders`.
152+
In the snippet below, we append the event to the stream `order-123`.
157153

158154
```ts
159-
await client.appendToStream("orders", event);
155+
await client.appendToStream("order-123", event);
160156
```
161157

162158
Here we are appending events without checking if the stream exists or if the stream version matches the expected event version. See more advanced scenarios in [appending events documentation](./appending-events.md).
163159

164160
## Reading events
165161

166-
Finally, we can read events back from the `orders` stream.
162+
Finally, we can read events back from the `order-123` stream.
167163

168164
```ts
169-
const events = client.readStream("orders", {
165+
const events = client.readStream("order-123", {
170166
direction: FORWARDS,
171167
fromRevision: START,
172168
maxCount: 10,

docs/api/observability.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
---
22
order: 8
3-
head:
4-
- - title
5-
- {}
6-
- Observability | NodeJS | Clients | Kurrent Docs
73
---
84

95
# Observability

docs/api/persistent-subscriptions.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
---
22
order: 5
3-
head:
4-
- - title
5-
- {}
6-
- Persistent Subscriptions | NodeJS | Clients | Kurrent Docs
73
---
84

95
# Persistent Subscriptions

docs/api/projections.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
---
22
order: 6
33
title: Projections
4-
head:
5-
- - title
6-
- {}
7-
- Projections | NodeJS | Clients | Kurrent Docs
84
---
95

106
# Projection management

docs/api/reading-events.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
---
22
order: 3
3-
head:
4-
- - title
5-
- {}
6-
- Reading Events | NodeJS | Clients | Kurrent Docs
73
---
84

95
# Reading Events

docs/api/subscriptions.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
---
22
order: 4
3-
head:
4-
- - title
5-
- {}
6-
- Catch-up Subscriptions | NodeJS | Clients | Kurrent Docs
73
---
84

95
# Catch-up Subscriptions

0 commit comments

Comments
 (0)