Skip to content

Commit a03d32c

Browse files
address comments
1 parent 0d03940 commit a03d32c

File tree

1 file changed

+11
-15
lines changed
  • src/routes/blog/post/announcing-realtime-channel-helpers

1 file changed

+11
-15
lines changed

src/routes/blog/post/announcing-realtime-channel-helpers/+page.markdoc

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: post
33
title: "Announcing Realtime Channel helpers: Type-safe subscriptions made simple"
44
description: Build realtime subscriptions faster with a fluent, chainable API that reduces errors and improves code clarity.
5-
date: 2026-02-12
5+
date: 2026-02-13
66
cover: /images/blog/announcing-realtime-channel-helpers/cover.png
77
timeToRead: 5
88
author: jake-barnby
@@ -77,17 +77,6 @@ const multiSubscription = await realtime.subscribe([
7777
});
7878
```
7979

80-
# Available across all platforms
81-
82-
Channel helpers are available in all Appwrite client SDKs: Web, Flutter, Apple, and Android. Each SDK provides the same fluent API, making it easy to build consistent realtime features across platforms.
83-
84-
The helpers support all available channels, including:
85-
- Account events
86-
- Database rows
87-
- Storage files
88-
- Team and membership updates
89-
- Function executions
90-
9180
# Key benefits
9281

9382
- **Type-safe subscriptions**: Catch errors at compile time instead of runtime
@@ -97,11 +86,18 @@ The helpers support all available channels, including:
9786
- **Consistent API**: Same helper syntax across all client SDKs
9887
- **Backwards compatible**: Existing string-based subscriptions continue to work
9988

100-
# Simplified developer experience
89+
# Available across all platforms
10190

102-
Channel helpers remove cognitive overhead from realtime development. You no longer need to remember channel string formats, consult documentation for syntax, or debug silent failures from malformed strings.
91+
Channel helpers are available in all Appwrite client SDKs: Web, Flutter, Apple, and Android. Each SDK provides the same fluent API, making it easy to build consistent realtime features across platforms.
92+
93+
The helpers support all available channels, including:
94+
- Account events
95+
- Database rows
96+
- Storage files
97+
- Team and membership updates
98+
- Function executions
10399

104-
The feature is available now on all Appwrite client SDKs. Existing subscriptions using string channels continue to work, ensuring a smooth transition for current projects.
100+
Existing subscriptions using string channels continue to work, ensuring a smooth transition for current projects.
105101

106102
# More resources
107103

0 commit comments

Comments
 (0)