The Delta Storage SDK is a JavaScript library that provides asbtraction for interacting with the Delta Storage API. This SDK allows you to perform various operations such as reading files, uploading files, managing directories, and more.

Installation

You can install the Delta Storage SDK using your preferred package manager:

npm install --save @delta-storage/sdk
yarn add --save @delta-storage/sdk

Setting Up An Instance

To start using the Delta Storage SDK, you need to acquire your API_KEY from your app.delta.storage account. Once you have your API_KEY, Here's how you can get started:

import DeltaStorage from '@delta-storage/sdk'

const sdk = new DeltaStorage.init({
  apiKey: 'YOUR API KEY'
})

Once you've set up your instance, using the Delta Storage SDK is easy!