> ## Documentation Index
> Fetch the complete documentation index at: https://docs.satoridb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

# Install satori

```bash theme={null}
npm i -g satoridb
```

# Use it

Download our node SDK

```bash theme={null}
npm i satori-node
```

## CRUD

```javascript expandable theme={null}
const {Satori} = require('satori-node');
const satori = new Satori({host: 'ws://127.0.0.1:2321'});

async function main(){
  await satori.connect();
  
  const key = await satori.set({data: {"email" : "test@test.com"}});
  console.log(await satori.get({key}))
  
  await satori.put({key, replace_field: "email", replace_value: "tes2@test.com"})
  await satori.delete({key})
}
```

If you are curious about more examples, join our [discord](https://discord.gg/PhbtqeWEPr)

For more information on the Node SDK or on other languages's SDKs go to the SDKs section

<Card title="SDKs" icon="code" href="https://docs.satoridb.com/sdks" />
