Learn how to integrate Kobble using our Deno SDK.
import { Kobble } from 'https://deno.land/x/kobble_admin@v2.0.0/index.ts';
npm install @kobbleio/admin
import { Kobble } from 'https://deno.land/x/kobble_admin@v2.0.0/index.ts'; const main = async () => { const kobble = new Kobble('YOUR_SECRET_KEY'); const whoami = await kobble.whoami(); console.log(whoami); }