atwright147 / starling-developer-sdk

The official JavaScript development kit for building on the Starling API

Home Page:https://developer.starlingbank.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Starling Javascript SDK

JavaScript Standard Style NPM Package Version Bundle size

Documentation

The documentation for our SDK can be found here.

Installation

npm install starling-developer-sdk

Usage

const Starling = require('starling-developer-sdk')
// or
import Starling from 'starling-developer-sdk'

const client = new Starling({
  // apiUrl: 'https://api-sandbox.starlingbank.com',
  accessToken: '<oauth access token>'
})

client.account.getAccounts()
  .then(({ data }) => console.log(data))
  .catch(err => console.log(err))

About

The official JavaScript development kit for building on the Starling API

https://developer.starlingbank.com

License:MIT License


Languages

Language:JavaScript 99.2%Language:Shell 0.8%