KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#deepseek-harness
#dsh-plugin
#open-source
#ai
#cli
#dsh
#claude-code
#codex
#developer-tools
#react
webfs
★ 340
Open GitHub ↗
A Filesystem Built On Top of the Web.
Download README (.md)
Explore Similar Repositories
natchez
:
functional tracing for cats
EfCoreInAction
:
Supporting code to go with the book "Entity Framework Core in Action"
dialogue-engine
:
A powerful yet minimalistic dialogue engine for the Godot Game Engine
intensity-normalization
:
Normalize MR image intensities in Python
autodsl
:
Auto-generate Kotlin DSL
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
webfs
?
Download (.md)
# WebFS WebFS is a filesystem built on top of [Blobcache](https://blobcache.io). WebFS started after looking for a way to use IPFS as a Dropbox replacement, and not finding any really solid solutions. I also wanted to be able to fluidly move my data between traditional storage providers like Dropbox, MEGA, or Google Drive while testing the waters of new p2p storage systems, like Swarm or Filecoin. Blobache provides a uniform API that makes everything look like a content-addressed store, supporting transactional modifications. Blobcache calls these stores *Volumes*. WebFS brings together Blobcache Volumes into Drives, which represent consistent subregions of the filesystem. Volumes can be locally persisted, persisted on another Blobcache node, or on external systems like Git, commodity object storage (S3, GCS, etc.), or a blockchain. If you have ever thought "*x* can probably be used as a file system", but didn't want to actually write the file system part, WebFS might be of use to you. You can probably turn *x* into a file system with WebFS by implementing a new Volume backend for Blobcache. ## Installation Download an executable from the releases page or build from source. ### Building from Source ``` go install ./cmd/webfs ```