Quick Start
To get the base SDK loaded and running, you’ll need to:
- Get your project ID
- Initialize the Rezolve Javascript SDK
Getting your project ID
Before you start integrating Rezolve make sure you have access to Canvas – your Rezolve Canvas dashboard. This where you can access a ProjectID
to initialize the Web SDK.
The Project ID of a project can be found in the Projects section of Canvas.
Initializing the Bluedot Javascript SDK
Add the Bluedot Javascript SDK to your project using:
npm install @bluedot-innovation/javascript-sdk --save
In your initialization method, initialize the JS SDK with:
// ES Module style
import { bluedot } from "@bluedot-innovation/javascript-sdk"
// or CommonJS style
const bluedot = require("@bluedot-innovation/javascript-sdk").bluedot;
...
bluedot.initialize("<yourProjectId>")