发生在IPFS上有趣的项目

发生在IPFS上有趣的项目

https://medium.com/@kidinamoto/%E5%8F%91%E7%94%9F%E5%9C%A8ipfs%E4%B8%8A%E6%9C%89%E8%B6%A3%E7%9A%84%E9%A1%B9%E7%9B%AE-fd4bfb9830b5

ipfs is awesome

最近的研究重点在IPFS上,作为一个基于BitSwap和Merkle DAG的系统,IPFS在不断完善自身的技术栈。ipfs_research 中有许多很有想象力的新的协议。在这些新的协议的启发下,我们能在IPFS上开发出更多有意思的产品。

1. 为什么需要 pubsub?

参考文献https://ipfs.io/blog/25-pubsub/

消息的发布与订阅Publish-Subscribe, 简称为‘pubsub’, 是一种在大型网络中被用于处理事件的模式。发布者(‘Publishers’ )按照主题发送信息或内容;接收者( ‘subscribers’)接受他们感兴趣的主题。 信息的传输不需要发布者和接受者间存在直连。这样一来可以得到更大的网络扩展性和灵活性。

有些文档共享编辑的应用、动态内容的网站、聊天应用、游戏、持续演化的数据集和用户发布信息的webservice都需要用到消息的发布订阅。它使得在数据中心、局域网、大型P2P应用上使用IPFS变得更快速。在不远的将来,IPNS记录可以通过pubsub发布,使得IPNS记录的更新变得更快。节点间可以通过pubsub 追踪一个 merkle-linked global log的头信息。

Demo

  • 以使用pubsub模式启动ipfs

<pre name="b88d" id="b88d" class="graf graf--pre graf-after--li" style="overflow: auto; font-family: Menlo, Monaco, "Courier New", Courier, monospace; font-size: 16px; margin: 43px 0px 0px; background: rgba(0, 0, 0, 0.05); padding: 20px; white-space: pre-wrap; color: rgba(0, 0, 0, 0.84); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">ipfs daemon — enable-pubsub-experiment</pre>

  • 订阅“foo”主题

<pre name="5526" id="5526" class="graf graf--pre graf-after--li" style="overflow: auto; font-family: Menlo, Monaco, "Courier New", Courier, monospace; font-size: 16px; margin: 43px 0px 0px; background: rgba(0, 0, 0, 0.05); padding: 20px; white-space: pre-wrap; color: rgba(0, 0, 0, 0.84); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">ipfs pubsub sub foo</pre>

  • 在另一个窗口发布一条消息,在另一个窗口可以显示“hello world”

<pre name="a638" id="a638" class="graf graf--pre graf-after--li" style="overflow: auto; font-family: Menlo, Monaco, "Courier New", Courier, monospace; font-size: 16px; margin: 43px 0px 0px; background: rgba(0, 0, 0, 0.05); padding: 20px; white-space: pre-wrap; color: rgba(0, 0, 0, 0.84); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">ipfs pubsub pub foo “hello world”</pre>

  • 查看所有的订阅者

<pre name="8ce4" id="8ce4" class="graf graf--pre graf-after--li" style="overflow: auto; font-family: Menlo, Monaco, "Courier New", Courier, monospace; font-size: 16px; margin: 43px 0px 0px; background: rgba(0, 0, 0, 0.05); padding: 20px; white-space: pre-wrap; color: rgba(0, 0, 0, 0.84); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">ipfs pubsub peers</pre>

  • 查看所有的主题

<pre name="1d87" id="1d87" class="graf graf--pre graf-after--li" style="overflow: auto; font-family: Menlo, Monaco, "Courier New", Courier, monospace; font-size: 16px; margin: 43px 0px 0px; background: rgba(0, 0, 0, 0.05); padding: 20px; white-space: pre-wrap; color: rgba(0, 0, 0, 0.84); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">ipfs pubsub ls</pre>

2. OrbitDB

orbit-db是一个去服务器的,分布式的P2P数据库。 orbit-db将数据存储在IPFS上,使用IPFS Pubsub自动同步各个节点的数据。 这是一个能够保证最终一致的数据库,它使用CRDT进行无冲突数据库合并,使orbit-db成为offline-first应用程序的绝佳选择。

案例-orbit

Orbit是一个P2P的聊天软件。

Devcon2上的介绍视频: Orbit Distributed, Real Time Web3 Apps with IPFS and Ethereum

<figure name="636e" id="636e" class="graf graf--figure graf-after--p" style="display: block; margin: 43px 0px 0px; position: relative; clear: both; outline: 0px; box-sizing: border-box; user-select: auto; z-index: 100; color: rgba(0, 0, 0, 0.84); font-family: medium-content-sans-serif-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;">

<canvas class="progressiveMedia-canvas js-progressiveMedia-canvas" width="75" height="40" style="display: block; vertical-align: baseline; position: absolute; top: 0px; left: 0px; width: 700px; height: 394.797px; margin: auto; box-sizing: border-box; visibility: hidden; opacity: 0; backface-visibility: hidden; transition: visibility 0s linear 0.5s, opacity 0.1s 0.4s;"></canvas>

[图片上传失败...(image-a34ad7-1522941041721)]

</figure>

线上测试环境:https://orbit.chat/#/loading

Orbit在IPFS上开发出了P2P数据库OrbitDB。

Orbit的Git项目地址:https://github.com/orbitdb

安装

当Nodejs版本在8.0之上,

npm install -g orbit-db-cli

测试是否安装成功

orbitdb help

应出现以下内容:

_     _ _         _ _                | |   (_) |       | | |       ___  _ __| |__  _| |_    __| | |__      / _ \| '__| '_ \| | __|  / _` | '_ \     | (_) | |  | |_) | | |_  | (_| | |_) |      \___/|_|  |_.__/|_|\__|  \__,_|_.__/             Peer-to-Peer Database       https://github.com/orbitdb/orbit-dbUsage: orbitdb <command> <database>Commands:  add <database> [<data>]            Add an entry to an eventlog or feed                                     database. Can be only used on:                                     eventlog|feed  create <database> <type>           Create a new database. Type can be one of:                                     eventlog|feed|docstore|keyvalue|counter                                                                  [aliases: new]  del <database> <key>               Delete an entry from a database. Only valid                                     for data types of: docstore|keyvalue|feed                                                       [aliases: delete, remove]  demo <name>                        Runs a sequence of commands as an example                                                                 [aliases: tour]  drop <database> yes                Remove a database locally. This doesn't                                     remove data on other nodes that have the                                     removed database replicated.                                                              [aliases: destroy]  get <database> [<search>]          Query the database.                                                        [aliases: query, search]  id                                 Show information about current orbit-db id  import <file> <database> <schema>  Import a CSV file to a document database                                                                  [aliases: csv]  inc <database> [<increment>]       Increase the value of a counter database.                                     Default increment is 1\. [aliases: increase]  info <database>                    Show information about a database                                                               [aliases: status]  put <database> <document>          Add a document to a document database  replicate <database>               Replicate a database with peers.  set <database> <key> <value>       Set a value of a key in KeyValue database  version                            Show information about current orbit-dbOptions:  -h, --help  Show help                                                [boolean]

测试数据库存储日志的特性:

  • 创建一个feed用于存储log信息
orbitdb create hello feed/orbitdb/QmfSUsdr34iGio68eMezDzZLCKZTnbsxNJgiNipimZtpi1/hello
  • 插入一条日志
orbitdb add /orbitdb/QmfSUsdr34iGio68eMezDzZLCKZTnbsxNJgiNipimZtpi1/hello "world"Added QmSwYZheHVa3eWf83XwnWNJtjGG7EWjiWTaTKLeFozVRnz
  • 读取feed内容
$ orbitdb get /orbitdb/QmfSUsdr34iGio68eMezDzZLCKZTnbsxNJgiNipimZtpi1/hello"world"
  • 删除某一条日志
$ orbitdb del /orbitdb/QmfSUsdr34iGio68eMezDzZLCKZTnbsxNJgiNipimZtpi1/hello QmSwYZheHVa3eWf83XwnWNJtjGG7EWjiWTaTKLeFozVRnzDeleted QmSwYZheHVa3eWf83XwnWNJtjGG7EWjiWTaTKLeFozVRnz
  • 得到feed所有内容
orbitdb get /orbitdb/QmfSUsdr34iGio68eMezDzZLCKZTnbsxNJgiNipimZtpi1/helloDatabase '/orbitdb/QmfSUsdr34iGio68eMezDzZLCKZTnbsxNJgiNipimZtpi1/hello' is empty!
  • 获取feed所有信息
orbitdb info hello/orbitdb/QmfSUsdr34iGio68eMezDzZLCKZTnbsxNJgiNipimZtpi1/hello> Type: feed> Owner: QmfSUsdr34iGio68eMezDzZLCKZTnbsxNJgiNipimZtpi1> Data file: ./orbitdb/QmfSUsdr34iGio68eMezDzZLCKZTnbsxNJgiNipimZtpi1/hello.orbitdb> Entries: 0> Oplog length: 2

参考文献:

https://en.wikipedia.org/wiki/Conflict-free_replicated_data_type

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容