Stoobly / stoobly-node

Node.js library for Stoobly API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stoobly Node.js library

The Stoobly Node library provides convenient access to stoobly-agent API.

Requirements

Node 14 or higher.

Installation

Install the package with:

npm install stoobly-node --save

Usage

const { default: Stoobly } = require('stoobly-node');

Or using ES modules:

import Stoobly from 'stoobly-node';

Configuration

Setting a scenario

const stoobly = new Stoobly();

stoobly.config.scenario.set(<SCENARIO-KEY>)
    .then(res => console.log(res.data))
    .catch(error => console.error(error));

About

Node.js library for Stoobly API

License:Apache License 2.0


Languages

Language:TypeScript 61.1%Language:JavaScript 38.9%