> For the complete documentation index, see [llms.txt](https://db.coolstone.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://db.coolstone.dev/0/reference/quick-start.md).

# Quick Start

## Install the library

{% tabs %}
{% tab title="NPM" %}

```bash
# Install via NPM
npm i dubnium@0.0.6
```

{% endtab %}
{% endtabs %}

## Make your first Record

```javascript
import {Record} from 'dubnium'
new Record("tag_here",{
"data":"here"
})
```

## Delete a Record

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

## Modify a Record

{% tabs %}
{% tab title="Data" %}

```javascript
import {modifyRecordValueByTag} from 'dubnium'
modifyRecordValueByTag("tag","key","new value")
```

{% endtab %}

{% tab title="Tag" %}

```javascript
import {modifyTag} from 'dubnium'
modifyTag("old_tag","new_tag")
```

{% endtab %}
{% endtabs %}

### Check out our full docs for more in-depth explanations and code
