Dubnium
v0
v0
  • Newest version
  • Reference
    • Install
    • Quick Start
    • API
      • Create and Delete Records
      • Modify Records
      • Get Records
      • Fuzzy Search Records
      • Other
    • returnType
    • License
  • Discord
  • NPM Page
  • Support the Project
  • ES5 vs ES6
Powered by GitBook
On this page
  • Install the library
  • Make your first Record
  • Delete a Record
  • Modify a Record
  • Check out our full docs for more in-depth explanations and code

Was this helpful?

  1. Reference

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

PreviousInstallNextAPI

Last updated 3 years ago

Was this helpful?