PeerShare-Proj
A note for the PeerShare project.
使用gun
gun是一个图表型数据库,首先需要新建数据库链接:
1 | var db = GUN(['http://localhost:8765/gun', 'https://gun-manhattan.herokuapp.com/gun']); |
然后链接到一个结点
1 | let expenses = db.get('expensestest'); |
要想保存一个数据到这个结点下:
1 | expenses.set(expense) |
读取数据:
1 | expenses.map().on(function(data, key){ |