db3.js
TypeScript icon, indicating that this package has built-in type declarations

0.4.6 • Public • Published

What is db3.js

GitHub release (latest by date) npm Coveralls branch

db3.js is the db3 network javascript API and you can use it to write and query JSON documents against the db3 network. and you can build fully decentralized applications combining web3.js and db3.js

Getting Started

Install db3.js

yarn add db3.js

Quick Started

// create a account
const account = createRandomAccount()
// create the client from db3 cloud sandbox
const client = createClient('https://rollup.cloud.db3.network',
                            'https://index.cloud.db3.network',
                             account)
await syncAccountNonce(client)
// get the collection
const collection = await getCollection("0x6ef32f0d8fc6bc872ffa977eb80920a0a75d0206", "book", client)
// add a document
const {id} = await addDoc(collection, {
                name:"The Three-Body Problem",
                author:"Cixin-Liu",
                rate:"4.8"} as Book)
console.log(id)
// query the document
const resultSet = await queryDoc<Book>(collection, "/[author=Cixin-Liu]")

Try on codesandbox

Examples

Package Sidebar

Install

npm i db3.js

Weekly Downloads

11

Version

0.4.6

License

Apache-2.0

Unpacked Size

2.54 MB

Total Files

81

Last publish

Collaborators

  • db3_dev