Skip to content

Commit

Permalink
chore: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-online committed Apr 10, 2024
1 parent be46998 commit c8baf57
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![npm version](https://img.shields.io/npm/v/brinedb)
![npm version](https://img.shields.io/npm/v/@brine-db/brine)

# BrineDB

Expand Down Expand Up @@ -28,19 +28,19 @@
To install and set up the library, run:

```sh
$ yarn add brinedb
$ yarn add @brine-db/brine
```

Or if you prefer npm:

```sh
$ npm i brinedb
$ npm i @brine-db/brine
```

## Quick Start

```js
const { Brine } = require('brinedb');
const { Brine } = require('@brine-db/brine');

// SQLite
const brinedb = new Brine('sqlite::memory:');
Expand Down Expand Up @@ -70,7 +70,7 @@ const value = await brinedb.get('key');
This library is written in Typescript and includes type definitions. Here is an example that will be typed correctly:

```ts
import { Brine } from 'brinedb';
import { Brine } from '@brine-db/brine';

type Value = { hello: string }

Expand Down

0 comments on commit c8baf57

Please sign in to comment.