Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vigzmv/ipfs-crdt-shared-editing
Decentralized Real-Time Collaborative Documents - Conflict-free editing in the browser using js-IPFS and CRDTs.
https://github.com/vigzmv/ipfs-crdt-shared-editing
crdt decentralized interplanetary ipfs js-ipfs
Last synced: 1 day ago
JSON representation
Decentralized Real-Time Collaborative Documents - Conflict-free editing in the browser using js-IPFS and CRDTs.
- Host: GitHub
- URL: https://github.com/vigzmv/ipfs-crdt-shared-editing
- Owner: vigzmv
- License: mit
- Created: 2017-11-07T20:03:30.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-11T07:36:56.000Z (about 6 years ago)
- Last Synced: 2024-12-17T11:44:16.022Z (6 days ago)
- Topics: crdt, decentralized, interplanetary, ipfs, js-ipfs
- Language: JavaScript
- Homepage: https://vigzmv.github.io/IPFS-CRDT-shared-editing/
- Size: 792 KB
- Stars: 44
- Watchers: 5
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IPFS CRDT Shared Editing
> "Decentralized Real-Time Collaborative Documents - Conflict-free editing in the browser using js-IPFS and CRDTs"
An distributed application that allows for several users to edit the same document at the same time, something similar to Google Docs, but without any coordinating server.
**Check it out [Live Here](https://vigneshm.com/IPFS-CRDT-shared-editing/)**, Open it on few tabs or devices and start typing...
## IPFS
**IPFS** stands for Interplanetary File System, and is much more than a file system. It’s an entire network stack for the decentralised and peer-to-peer web, allowing you to build truly serverless web applications.
More about IPFS here [ipfs.io](ipfs.io).
## CRDT
**Conflict-Free Replicated Data Types** provides a conflict-free manner of replicating data across multiple nodes without ever having to elect a leader or use another type of centralized authority to reach consensus.
The project uses **js-ipfs**, which is a Javascript implementation of IPFS that works in Node.js and in a modern browser.
## The Project
A text editor that requires no server but yet, allows several users to edit it in a collaborative fashion. We can call it “google docs without google for plain text”.
[Project Live Here.](https://vigneshm.com/IPFS-CRDT-shared-editing/)
## Set up
### Pre-requisites
- Have Node.js version 6 or greater installed
### Install
```sh
$ git clone https://github.com/vigzmv/IPFS-CRDT-shared-editing.git
$ cd IPFS-CRDT-shared-editing
$ yarn install
```### Build
```sh
$ yarn build
```### Run
```sh
$ yarn start
```### Open in browser
Using a modern browser that supports WebRTC, like a recent version of Chrome or Firefox, open several windows of [http://localhost:1234](http://localhost:1234) and start typing!!
## License
MIT