@gyselroth/balloon-sdk-node

The official balloon sdk for node with typescript support

Usage no npm install needed!

<script type="module">
  import gyselrothBalloonSdkNode from 'https://cdn.skypack.dev/@gyselroth/balloon-sdk-node';
</script>

README

balloon node.js SDK with typescript support

Build Status GitHub release npm GitHub license

Provides a node.js SDK for balloon. Including typescript definition.

Note This SDK is mostly generated from the balloon OpenAPI specs.

Install

npm install --save @gyselroth/balloon-sdk-node

Usage

Example request

const { CoreV2Api, HttpBasicAuth } = require('@gyselroth/balloon-sdk-node');

var server = 'https://localhost';
var client = new CoreV2Api(server);
var basic = new HttpBasicAuth('admin', 'admin');
client.setDefaultAuthentication(basic);

client.getUsers().then((response) => {
  console.log(response.body);
}).catch((error) => {
  console.log(error);
});