Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/itss0n1c/bun.db

A wrapper of quick.db for bun.
https://github.com/itss0n1c/bun.db

Last synced: 2 months ago
JSON representation

A wrapper of quick.db for bun.

Awesome Lists containing this project

README

        

# bun.db

Discord server
npm version
npm downloads

### A wrapper of [quick.db](https://npmjs.com/package/quick.db) for [bun](https://bun.sh).

## Installation

```zsh
% bun add bun.db
```

## Usage

```ts
const db = new BunDB('test.sqlite');

await db.set('hello', 'world');
let hello = await db.get('hello') // "world"
```