Quick Start
Install the library
# Install via NPM
npm i [email protected]Make your first Record
import {Record} from 'dubnium'
new Record("tag_here",{
"data":"here"
})Delete a Record
import {deleteByTag} from 'dubnium'
deleteByTag("tag_here")Modify a Record
import {modifyRecordValueByTag} from 'dubnium'
modifyRecordValueByTag("tag","key","new value")import {modifyTag} from 'dubnium'
modifyTag("old_tag","new_tag")Check out our full docs for more in-depth explanations and code
Last updated
Was this helpful?