Skip to content

thisdb/sdk-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ThisDB JS SDK

Latest Version

Official ThisDB SDK for Javascript

Website and documentation: https://www.thisdb.com

The cloud key/value database built from the ground up for serverless applications. It's fast, secure, cost effective, and is easy to integrate.

var thisDB = new ThisDB({ apiKey: '<your-api-key>' });

thisDB.get({ bucket: '<your-bucket>', key: '<your-key>' }, function(response) {
  alert(response);
});

Installation

To use the SDK in the browser, simply add the following script tag to your HTML pages:

<script type="text/javascript" src="https://cdn.thisdb.com/sdk/js/0.1.1/thisdb.min.js"></script>