Skip to content

Update examples a bit #364

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 24 additions & 10 deletions src/components/Examples.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const examples = [
href: '/docs/examples/gossip-chat',
name: 'Gossip Chat',
description:
'A simple chat app using iroh-net gossip connections.',
'A simple chat app using iroh-gossip pubsub.',
tags: ["gossip", "CLI"],
pattern: {
y: 16,
Expand All @@ -29,7 +29,7 @@ const examples = [
href: 'https://github.com/n0-computer/iroh-examples/tree/main/tauri-todos',
name: 'Todos',
description:
'See iroh in the classic TODO app example, with a CLI & desktop GUI.',
'See iroh in the classic TODO app example with a tauri desktop GUI.',
tags: ["data modeling", "CLI", "tauri", "desktop"],
pattern: {
y: 16,
Expand All @@ -43,8 +43,8 @@ const examples = [
href: 'https://github.com/n0-computer/sendme',
name: 'Sendme',
description:
'A file sharing app with a CLI, desktop and iOS apps, built with iroh, fully open source!',
tags: ["file sharing", "desktop", "iOS", "blobs", "connections"],
'A file sharing CLI, built with iroh, fully open source!',
tags: ["CLI", "file sharing", "blobs"],
pattern: {
y: 16,
squares: [
Expand All @@ -57,8 +57,8 @@ const examples = [
href: 'https://github.com/n0-computer/dumbpipe',
name: 'Dumbpipe',
description:
'Need to connect two computers? Try a dumb pipe.',
tags: ["CLI", "unix pipes", "connections"],
'Need to connect two computers? Try a dumb pipe. Expose unix pipes or locally running TCP servers via iroh.',
tags: ["CLI", "unix pipes"],
pattern: {
y: 16,
squares: [
Expand All @@ -71,7 +71,7 @@ const examples = [
href: 'https://github.com/n0-computer/iroh-examples/tree/main/extism',
name: 'Extism',
description:
'Provide Iroh APIs to all kinds of languages with iroh existism host functions',
'Provide Iroh APIs to all kinds of languages with iroh extism host functions',
tags: ["plugins", "multi-language", "WASM"],
pattern: {
y: 16,
Expand All @@ -85,8 +85,22 @@ const examples = [
href: 'https://github.com/n0-computer/iroh-examples/tree/main/iroh-automerge',
name: 'Automerge',
description:
'Example of backing automerge with iroh-net connections',
tags: ["connections", "CRDTs"],
'Sync two automerge documents across machines via iroh connections.',
tags: ["protocol", "CRDTs"],
pattern: {
y: 16,
squares: [
[0, 1],
[1, 3],
],
},
},
{
href: 'https://github.com/n0-computer/iroh-examples/tree/main/iroh-automerge-repo',
name: 'Automerge Repo',
description:
'Sync and gossip repositories of Automerge documents peer to peer.',
tags: ["protocol", "CRDTs", "automerge-repo"],
pattern: {
y: 16,
squares: [
Expand All @@ -100,7 +114,7 @@ const examples = [
name: 'Swarmie',
description:
'A proof of concept tool to use iroh global content discovery using the bittorrent mainline DHT.',
tags: ["DHTs", "content discovery"],
tags: ["CLI", "DHTs", "content discovery"],
pattern: {
y: 16,
squares: [
Expand Down
Loading