-
Notifications
You must be signed in to change notification settings - Fork 415
Expand file tree
/
Copy pathindex.mdx
More file actions
263 lines (253 loc) · 6.47 KB
/
index.mdx
File metadata and controls
263 lines (253 loc) · 6.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
---
meta:
title: "Documentation"
description:
"Explore the documentation to learn how to build collaborative experiences
with Liveblocks."
showTitle: false
---
<DocsHomepageHero
title="Documentation"
description="Liveblocks provides the realtime infrastructure to handle concurrent edits on shared data, so people and AI agents can collaborate without breaking your app."
actions={[
{
title: "Get started",
href: "/docs/get-started",
appearance: "primary",
},
{
title: "Browse examples",
href: "/examples",
},
]}
/>
<DocsHomepageGrid />
## Collaboration features
<ListGrid columns={2}>
<DocsCardFeature
feature="multiplayer"
href="/docs/collaboration-features/multiplayer"
/>
<DocsCardFeature
feature="comments"
href="/docs/collaboration-features/comments"
/>
<DocsCardFeature
feature="notifications"
href="/docs/collaboration-features/notifications"
/>
<DocsCardFeature
feature="ai-collaboration"
href="/docs/collaboration-features/ai-collaboration"
/>
<DocsCardFeature
feature="ai-copilots"
href="/docs/collaboration-features/ai-copilots"
/>
</ListGrid>
## API Reference
<ListGrid columns={2} defaultVisibleItems={6}>
<DocsCard
type="technology"
title="React"
href="/docs/api-reference/liveblocks-react"
description="@liveblocks/react"
visual={<DocsReactIcon />}
/>
<DocsCard
type="technology"
title="React UI"
href="/docs/api-reference/liveblocks-react-ui"
description="@liveblocks/react-ui"
visual={<DocsReactIcon />}
/>
<DocsCard
type="technology"
title="React Tiptap"
href="/docs/api-reference/liveblocks-react-tiptap"
description="@liveblocks/react-tiptap"
visual={<DocsReactIcon />}
/>
<DocsCard
type="technology"
title="React BlockNote"
href="/docs/api-reference/liveblocks-react-blocknote"
description="@liveblocks/react-blocknote"
visual={<DocsReactIcon />}
/>
<DocsCard
type="technology"
title="React Flow"
href="/docs/api-reference/liveblocks-react-flow"
description="@liveblocks/react-flow"
visual={<DocsReactIcon />}
/>
<DocsCard
type="technology"
title="React Lexical"
href="/docs/api-reference/liveblocks-react-lexical"
description="@liveblocks/react-lexical"
visual={<DocsReactIcon />}
/>
<DocsCard
type="technology"
title="Node.js ProseMirror"
href="/docs/api-reference/liveblocks-node-prosemirror"
description="@liveblocks/node-prosemirror"
visual={<DocsNodejsIcon />}
/>
<DocsCard
type="technology"
title="Node.js Lexical"
href="/docs/api-reference/liveblocks-node-lexical"
description="@liveblocks/node-lexical"
visual={<DocsNodejsIcon />}
/>
<DocsCard
type="technology"
title="JavaScript"
href="/docs/api-reference/liveblocks-client"
description="@liveblocks/client"
visual={<DocsJavascriptIcon />}
/>
<DocsCard
type="technology"
title="Redux"
href="/docs/api-reference/liveblocks-redux"
description="@liveblocks/redux"
visual={<DocsReduxIcon />}
/>
<DocsCard
type="technology"
title="Zustand"
href="/docs/api-reference/liveblocks-zustand"
description="@liveblocks/zustand"
visual={
<img
alt=""
src="/assets/zustand.png"
width={24}
height={24}
loading="lazy"
/>
}
/>
<DocsCard
type="technology"
title="Yjs"
href="/docs/api-reference/liveblocks-yjs"
description="@liveblocks/yjs"
visual={<DocsYjsIcon className="fill-product-icon-brand h-auto w-6" />}
/>
<DocsCard
type="technology"
title="Node.js"
href="/docs/api-reference/liveblocks-node"
description="@liveblocks/node"
visual={<DocsNodejsIcon />}
/>
<DocsCard
type="technology"
title="Node.js Emails"
href="/docs/api-reference/liveblocks-emails"
description="@liveblocks/emails"
visual={<DocsNodejsIcon />}
/>
<DocsCard
type="technology"
title="Python"
href="/docs/api-reference/liveblocks-python"
description="Python SDK"
visual={<DocsPythonIcon />}
/>
<DocsCard
type="technology"
title="REST API"
href="/docs/api-reference/rest-api-endpoints"
description="HTTP endpoints"
visual={<DocsApiIcon className="fill-product-icon-brand h-auto w-6" />}
/>
</ListGrid>
## Examples
<ListGrid columns={2}>
<ExampleCard
example={{
title: "AI Popup Chat",
slug: "ai-popup/nextjs-ai-popup",
image: "/images/examples/thumbnails/ai-popup.jpg",
}}
technologies={["nextjs", "react"]}
openInNewWindow
/>
<ExampleCard
example={{
title: "AI Chats",
slug: "ai-chats/nextjs-ai-chats",
image: "/images/examples/thumbnails/ai-chats.jpg",
}}
technologies={["nextjs", "react"]}
openInNewWindow
/>
<ExampleCard
example={{
title: "Advanced Collaborative Text Editor",
slug: "collaborative-text-editor-advanced/nextjs-tiptap-advanced",
image: "/images/examples/thumbnails/text-editor-advanced.jpg",
}}
technologies={["nextjs"]}
openInNewWindow
/>
<ExampleCard
example={{
title: "Comments Notifications",
slug: "comments-notifications",
image: "/images/examples/thumbnails/comments-notifications.png",
}}
technologies={["nextjs"]}
openInNewWindow
/>
<ExampleCard
example={{
title: "Live Cursors",
slug: "live-cursors",
image: "/images/examples/thumbnails/live-cursors.jpg",
}}
technologies={["nextjs", "vuejs", "sveltekit", "solidjs", "javascript"]}
openInNewWindow
/>
<ExampleCard
example={{
title: "Collaborative Whiteboard",
slug: "collaborative-whiteboard-advanced",
image:
"/images/examples/thumbnails/collaborative-whiteboard-advanced.jpg",
advanced: true,
}}
technologies={["nextjs"]}
openInNewWindow
/>
</ListGrid>
## Community
<ListGrid columns={3}>
<DocsCard
title="X"
href="https://x.com/liveblocks"
description="Follow us on X for the latest news and updates."
visual={<DocsXIcon />}
openInNewWindow
/>
<DocsCard
title="Discord"
href="https://liveblocks.io/discord"
description="Join hundreds of developers building with Liveblocks."
visual={<DocsDiscordIcon />}
openInNewWindow
/>
<DocsCard
title="GitHub"
href="https://github.com/liveblocks/liveblocks"
description="Follow progress and contribute to the codebase."
visual={<DocsGithubIcon />}
openInNewWindow
/>
</ListGrid>