@kolla/js-sdk
v0.1.90
Published
Check out [our official docs](https://docs.getkolla.com/kolla/developer-resources/web-sdk-reference).
Downloads
195
Readme
k-js-sdk
Check out our official docs.
Usage
npm install @kolla/react-sdkimport { 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.jsin the path to prevent the browser defaulting toindex.cjs - replace
@latestwith a version if you want to prevent automatically pulling latest changes*
