TomeDB
Urbit's web3 and composability bridge
Features
Example
import Urbit from '@urbit/http-api'
import Tome from '@holium/tome-db'
const api = new Urbit('', '', window.desk)
api.ship = window.ship
const db = await Tome.init(api)
const store = await db.keyvalue()
const result = await store.set('foo', 'bar')
// result === true
const value = await store.get('foo')
// value === 'bar'Limitations
Quick Links
Last updated