SQLite

Javascript Client SDK Installation

You can install the library via:

NPM (or Yarn)

You can use any NPM-compatible package manager, including NPM itself and Yarn.

npm install sqlitecloud-sdk

Then:

import SQLiteCloud from 'sqlitecloud-sdk';

Or, if you're not using ES6 modules:

var SQLiteCloud = require('sqlitecloud-sdk');

CDN

<script src="https://js.sqlitecloud.io/1.0/sqlitecloud-sdk.min.js"></script>

Then:

var SQLiteCloud = window.SQLiteCloud;
Previous
Introduction