This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update architecture overview and core architecture image, add m…
…ore info to the readme
- Loading branch information
Showing
11 changed files
with
115 additions
and
74 deletions.
There are no files selected for viewing
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
┌─────────────────────────────────────────────────────────────────────────────┐ | ||
│ │ | ||
│ IPFS Core │ | ||
│ │ | ||
├ ─ ─ ─ ─┌ ─ ─ ─ ─┌ ─ ─ ─ ─┌ ─ ─ ─ ─┌ ─ ─ ─ ─ ┌ ─ ─ ─ ─│ | ||
│ Repo │ Block │Bitswap │ DAG │ Files │ Swarm │ | ||
│ │ │ │ │ │ │ | ||
└────────┴────────┴────────┴────────┴────────┴────────────────────────────────┘ | ||
│ │ │ │ │ │ | ||
│ │ │ │ ▼ │ | ||
│ │ │ │ ┌──────────────────┐ ▼ | ||
│ │ │ │ │ipfs-unixfs-engine│ ┌─────────────────────┐ | ||
│ │ │ │ └──────┬───────────┤ │ │ | ||
│ │ │ │ │ │ipfs-unixfs│ │ libp2p │ | ||
│ │ │ │ │ └───────────┘ │ │ | ||
│ │ │ ▼ ▼ ├─────────────────────┤ | ||
│ │ │ ┌─────────────┬────────┐ │ libp2p-ipfs-nodejs │ | ||
│ │ │ │ipfs-resolver│dag-pb │ ├─────────────────────┤ | ||
│ │ │ └─────────────┼────────┤ │ libp2p-ipfs-browser │ | ||
│ │ ▼ │ │dag-cbor│ └─────────────────────┘ | ||
│ │┌────────────┐ │ ├────────┤ | ||
│ ││ipfs-bitswap│◀───────┤ │ethereum│ | ||
│ │└────────────┘ │ ├────────┤ | ||
│ │ │ │ │... │ | ||
│ ▼ ▼ │ └────────┘ | ||
│ ┌───────────────────┐ │ | ||
│ │ipfs-blocks-service│◀───────┘ | ||
│ └───────────────────┘ | ||
│ │ | ||
├───────────┘ | ||
▼ | ||
┌─────────┬─────────┐ | ||
│ │ fs │ | ||
│ipfs-repo├─────────┤ | ||
│ │IndexedDB│ | ||
└─────────┴─────────┘ |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
offline mode - uses IPFS core directly | ||
┌───────────────────────────────────────────┐ | ||
│ │ | ||
│ │ | ||
│ online mode - uses IPFS through http-api │ | ||
┌────────────┐ │ ┌────────────────────┐ │ ┌──────────┐ | ||
│ │ │ ┌ ─ ─ ─ ─ ─ ─ │ │ │ │ │ | ||
│ CLI │───┴── ipfs-api ├──▶│ HTTP-API │───┴───▶│IPFS Core │ | ||
│ │ └ ─ ─ ─ ─ ─ ─ │ │ │ │ | ||
└────────────┘ └────────────────────┘ └──────────┘ | ||
△ △ △ | ||
├───────────────────────────────────────┴────────────────────────┘ | ||
│ | ||
┌────────────┐ | ||
│ Tests │ | ||
└────────────┘ |