Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 436 Bytes

readme.md

File metadata and controls

29 lines (18 loc) · 436 Bytes

Guapp sdk

Usage

Get your api key from https://guapp.ai

install the package

npm install @guapp.ai/guapp-sdk

instantiate the package and start the app

Commonjs

const { Guapp } = require("@guapp.ai/guapp-sdk");

const guapp = new Guapp("Your api key");
guapp.connect();

Typescript

import { Guapp } from "@guapp.ai/guapp-sdk";

const guapp = new Guapp("Your api key");
guapp.connect();