Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Peer Pad | 596 | 4 years ago | 1 | August 17, 2017 | 101 | mit | JavaScript | |||
📝 Online editor providing collaborative editing in really real-time using CRDTs and IPFS. | ||||||||||
Notes | 377 | 8 months ago | 348 | mit | ||||||
IPFS Collaborative Notebook for Research | ||||||||||
Peer Base | 209 | 5 | 3 | 3 years ago | 10 | February 01, 2019 | 99 | mit | JavaScript | |
Build real-time collaborative DApps on top of IPFS | ||||||||||
Quiet | 120 | a day ago | 432 | gpl-3.0 | C | |||||
A private, p2p alternative to Slack and Discord built on Tor & IPFS | ||||||||||
Quantizr | 111 | a day ago | 8 | mit | Java | |||||
Quanta is an open-source Social Media (Fediverse) platform for wikis, micro-blogging, collaboration, publishing, secure messaging, file sharing, and video/audio sharing. Browser-based, and written in Java and TypeScript. | ||||||||||
Dynamic Data And Capabilities | 55 | 3 years ago | 20 | |||||||
[ARCHIVED] Dynamic Data and Capabilities in IPFS Working Group | ||||||||||
Editor Legacy | 53 | 5 years ago | 20 | mit | JavaScript | |||||
📝 Collaborative real-time edition of parcel scenes, with IPFS uploading. Based on aframe-inspector | ||||||||||
Local Offline Collab | 45 | 8 months ago | 6 | mit | ||||||
Local Offline Collaboration Special Interest Group | ||||||||||
Ipfs Crdt Shared Editing | 36 | 4 years ago | 2 | mit | JavaScript | |||||
Decentralized Real-Time Collaborative Documents - Conflict-free editing in the browser using js-IPFS and CRDTs. | ||||||||||
Decentralized Social Apps Guide | 25 | 3 months ago | ||||||||
An awesome overview of existing open-source decentralized apps and platforms for social networking, engagement and collaboration |
A pinner for peer-base ... backup collaborations using IPFS, IPLD, IPNS + ipfs-cluster
$ IPFS_HOME=/tmp/peer-base-pinner ipfs init
$ cat << EOF > .env
# Expose a websocket proxy (optional)
WEBSOCKET_ANNOUNCE_HOST=peer-base-pinner.example.com
WEBSOCKET_EXTERNAL_PORT=8080
## Starts a proxy and announces it as /dns4/<host>/tcp/<port>/ws/ipfs/<backplane-peer-id>
##
## If running on a platform such as Heroku that requires a 'Host' header in
## order to route to the correct app, and because it is not currently possible
## to embed 'Host' headers in multiaddrs, it maybe be necessary to manually
## proxy through an additional layer (such as nginx) in order to add the
## 'Host header. See: https://github.com/multiformats/multiaddr/issues/63
## An example nginx config is shown below.
# The IPFS cluster
BOOTSTRAP1=/dns4/example.com/tcp/9097/ipfs/QmXXX
# Set STARTUP_MODE to init on first run, then load-from-pinner
STARTUP_MODE=init
# ipfs-cluster stuff
IPFS_CLUSTER_API=/dns4/example.com/tcp/9097/ipfs/QmXXX
IPFS_CLUSTER_LABEL=some-label
IPFS_CLUSTER_USER=jimpick
IPFS_CLUSTER_PASSWORD=iloveipfs
# Create a new Peer Id and private key (from /tmp/peer-base-pinner/config)
PEER_ID=QmYYY
PRIV_KEY=ZZZZZZZZZ....=
EOF
$ heroku maintenance:on
$ heroku plugins:install heroku-config
$ heroku config:push
$ heroku maintenance:off
# wait for it to start up
$ heroku config:set IPNS_MODE=load
server {
listen 8080;
server_name peer-pad-pinner.example.com;
location / {
proxy_pass http://peer-pad-pinner.herokuapp.com:80;
proxy_cache_bypass $http_upgrade;
proxy_http_version 1.1;
proxy_set_header Host "peer-pad-pinner.herokuapp.com:80";
proxy_set_header Origin "http://peer-pad-pinner.herokuapp.com:80";
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
}