k-js-sdk
Check out our official docs.
Usage
npm install @kolla/react-sdk
import { kollaSDK } from '@kolla/js-sdk';
await kollaSDK.authenticate('your-token');
kollaSDK.openMarketplace();
Alternatively you can include at runtime w/ script type of module
<script type="module">
import { kollaSDK } from "https://unpkg.com/@kolla/js-sdk@latest/index.js"
await kollaSDK.authenticate('your-token');
kollaSDK.openMarketplace();
</script>
notes:
- include
index.js
in the path to prevent the browser defaulting toindex.cjs
- replace
@latest
with a version if you want to prevent automatically pulling latest changes*