You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: Announcing Hypergraph - A New Chapter in Web Development
4
-
date: 2025-06-11
3
+
title: Announcing Hypergraph (Developer Preview)
4
+
date: 2025-07-03
5
5
authors: [nik, pablo]
6
6
tags: [release, alpha, hypergraph]
7
7
---
8
8
9
-
After months of development and countless conversations with developers like you, **we're thrilled to unveil the Alpha version of Hypergraph**. This is more than just another data layer—it's a fundamental rethinking of how we build collaborative, secure, and offline-first Web3 applications.
9
+
After months of development and countless conversations with developers like you, **we're thrilled to unveil the Developer Preview version of Hypergraph**. This is more than just another data layer—it's a fundamental rethinking of how we build collaborative, secure, and offline-first Web3 applications.
10
10
11
11
<!-- truncate -->
12
12
13
13
## Why We Built Hypergraph
14
14
15
15
The challenges of modern app development are clear: users expect real-time collaboration, bulletproof security, and apps that work flawlessly even when offline. Traditional architectures force uncomfortable trade-offs between these needs. We knew there had to be a better way.
16
16
17
-
Enter Hypergraph, built on two core innovations: a local-first architecture that puts your data where it belongs—on the client—and our implementation of the GRC-20 standard for truly composable knowledge graphs.
17
+
Enter Hypergraph, built on two core innovations: a architecture that puts your data where it belongs—on the client—and our implementation of the GRC-20 standard for truly composable knowledge graphs.
18
18
19
19
<!-- TODO: ADD IMAGE OF HYPGRAPH UI -->
20
20
21
21
## What Makes Hypergraph Different
22
22
23
-
At its heart, Hypergraph is local-first. Every piece of data is stored on the client, making reads and writes instant—no waiting for server responses. When you're online, our CRDT-based sync ensures your data flows seamlessly between devices and collaborators. When you're offline? Everything just works.
23
+
<!--At its heart, Hypergraph will local-first. Every piece of data is stored on the client, making reads and writes instant—no waiting for server responses. When you're online, our CRDT-based sync ensures your data flows seamlessly between devices and collaborators. When you're offline? Everything just works.-->
24
24
25
25
Security isn't an afterthought—it's built into our foundation. With end-to-end encryption, your data is only readable by those you explicitly trust. No intermediaries, no compromises.
26
26
27
27
The real magic happens with our GRC-20 Knowledge Graph. It's not just a data format; it's a new way of thinking about how information connects and flows through your applications. Every mutation, whether it's adding a note or updating a relationship, becomes part of a larger, interoperable knowledge network.
28
28
29
29
<!-- TODO: ADD GIF OF DATA MODEL -->
30
30
31
-
## Looking Ahead
31
+
<!--## Looking Ahead
32
32
33
-
We're launching this alpha today, June 10, 2025, and we're targeting a beta release in August. Our roadmap to a stable release in Q4 2025 is ambitious but achievable with your help. The beta will bring enhanced stability, an expanded API surface, and comprehensive documentation based on your feedback.
33
+
We're launching this alpha today, July 3. Our roadmap to a stable release in Q4 2025 is ambitious but achievable with your help. The beta will bring enhanced stability, an expanded API surface, and comprehensive documentation based on your feedback.-->
34
34
35
-
## Join the Alpha Today
35
+
<!--## Join the Alpha Today
36
36
37
37
Getting started is simple. Install our SDK:
38
38
39
39
```bash
40
40
# TODO: ADD INSTALLER TO NPM npm install @hypergraph/sdk-alpha
41
41
```
42
42
43
-
Head to our [Quickstart guide](/docs/quickstart) to build your first Hypergraph app, or dive deep into our [API Reference](/docs/api-reference) to explore the possibilities. We support Node.js and modern browsers, with React hooks that make integration a breeze.
43
+
Head to our [Quickstart guide](/docs/quickstart) to build your first Hypergraph app, or dive deep into our [API Reference](/docs/api-reference) to explore the possibilities. We support Node.js and modern browsers, with React hooks that make integration a breeze.-->
44
44
45
45
## A Note on What to Expect
46
46
47
-
Let's be transparent: this is an alpha release. You'll see rapid changes as we iterate based on your feedback. Some features are still experimental, and you might encounter sync delays with larger graphs or limited support on mobile browsers. But that's exactly why we need you—every bug report, feature request, and question helps shape Hypergraph's future.
47
+
Let's be transparent: this is an developer preview release. You'll see rapid changes as we iterate based on your feedback. Some features are still experimental, and you might encounter sync delays with larger graphs or limited support on mobile browsers. But that's exactly why we need you—every bug report, feature request, and question helps shape Hypergraph's future.
48
48
49
49
## Let's Build Together
50
50
@@ -58,6 +58,6 @@ We read every message and your feedback directly shapes our roadmap.
58
58
59
59
## Ready to Shape the Future?
60
60
61
-
This is just the beginning. Hypergraph represents our vision for the future of Web3 development, but it's your creativity and feedback that will help us realize its full potential. [Get started with the Quickstart](/docs/quickstart), and explore our [API Reference](/docs/api-reference), and join us in building the next generation of collaborative, decentralized applications.
61
+
This is just the beginning. Hypergraph represents our vision for the future of Web3 development, but it's your creativity and feedback that will help us realize its full potential. [Get started with the Quickstart](/docs/quickstart), and join us in building the next generation of collaborative, decentralized applications.
Copy file name to clipboardExpand all lines: docs/docs/core-concepts.md
+1-132Lines changed: 1 addition & 132 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,12 +7,11 @@ tags: [concepts, architecture]
7
7
8
8
# 🧠 Core Concepts
9
9
10
-
Hypergraph re-imagines traditional client–server apps as **local-first**, **peer-syncing**knowledge graphs. Understanding the following building blocks will help you design applications that feel real-time, privacy-preserving, and interoperable by default.
10
+
Hypergraph re-imagines traditional client–server apps as knowledge graphs. Understanding the following building blocks will help you design applications that feel real-time, privacy-preserving, and interoperable by default.
11
11
12
12
## Table of Contents
13
13
14
14
-[Knowledge Graphs](#knowledge-graphs)
15
-
-[Hypergraph SDK](#hypergraph-sdk-in-action)
16
15
-[Spaces](#spaces)
17
16
-[Identities](#identities)
18
17
-[Inboxes](#inboxes)
@@ -53,62 +52,6 @@ Hypergraph takes knowledge graphs further by making them:
53
52
54
53
> **The magic:** Under the hood, Hypergraph serializes everything using the **GRC-20** standard. As a developer, you just work with simple SDK calls—Hypergraph handles the complex cryptography and networking. If you're curious about the low-level details, check out the [GRC-20 section](#grc-20-advanced) below.
55
54
56
-
## Hypergraph SDK in Action
57
-
58
-
Let's build that photographer example step by step:
**Next:** Learn about [Spaces](#spaces)—how Hypergraph organizes people and data into collaborative groups.
109
-
110
-
<!-- GRC-20 deep-dive moved to the bottom of the doc -->
111
-
112
55
## Spaces
113
56
114
57
A **Space** is the fundamental unit of collaboration.
@@ -183,80 +126,6 @@ Imagine if every social app stored data differently—Instagram used JSON, TikTo
183
126
184
127
GRC-20 solves this by creating a **universal format** for knowledge. Any app that speaks GRC-20 can read, write, and build upon data created by any other GRC-20 app.
185
128
186
-
### The Five Building Blocks
187
-
188
-
Let's decode the sentence *"Teresa, a photographer, owns a Fujifilm camera"* into its GRC-20 components:
189
-
190
-
|**English**|**GRC-20 Term**|**What It Represents**|
-**Migrating data** from other formats into the knowledge graph
249
-
-**Creating custom query engines** that need maximum performance
250
-
-**Debugging issues** at the protocol level
251
-
252
-
For typical app development, Hypergraph's React hooks and high-level APIs are much more convenient and handle all the GRC-20 complexity for you.
253
-
254
-
---
255
-
256
-
**Want to learn more?** Read the full [GRC-20 specification](https://github.com/graphprotocol/graph-improvement-proposals/blob/main/grcs/0020-knowledge-graph.md) on GitHub.
0 commit comments