0.5.1 • Published 4 years ago

@reactivemarkets/platform-sdk v0.5.1

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
4 years ago

Reactive Platform JavaScript SDK

The Reactive Platform SDK for JavaScript. See Developer Docs for full documentation

Quick Start

import { FeedClient, toJS } from "@reactivemarkets/platform-sdk";

const feedClient = new FeedClient({
    apiKey: MY_API_KEY,
});

feedClient
    .on("open", () => {
        feedClient.subscribeMarketData({
            markets: ["BTCUSD-CNB"],
        });
    })
    .on("md-snapshot-l2", (snapshot) => {
        console.log(toJS(snapshot));
    });

Installing

npm i @reactivemarkets/platform-sdk

Building

To install all dependencies and build run:

git clone https://github.com/reactivemarkets/platform-js.git
cd platform-js
npm ci
npm run build

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details.

0.5.1

4 years ago

0.5.0

4 years ago

0.4.1

4 years ago

0.4.0

4 years ago

0.3.5

4 years ago

0.3.2

4 years ago

0.3.3

4 years ago

0.3.1

4 years ago

0.3.0

4 years ago

0.2.3

4 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago