Skip to main content

Getting started

Here we will guide you through the process of accessing your HIDDB database.

Installation​

Use one of our client SDKs or our REST API. To install the corresponding SDK execute one of the following commands.

npm install --save-dev hiddb

Then, depending on your preferred programming language, type the following:

import { HIDDB } from 'hiddb';

async function main() {
// Create client ant login
const hiddb = new HIDDB();

// Get a list of your collections
await hiddb.listCollections("<database_id>")
}

Congratulations! 🎉 You just successfully accessed your database.