For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create and Delete Records

Create Record

Create a new Record.

import {Record} from 'dubnium'
new Record("tag",{"data":"here"})

Delete Record

Delete a record, found by it's tag.

import {deleteByTag} from 'dubnium'
deleteByTag("tag_here")

Last updated