nexosis-api-client
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

Nexosis API Client Library

This software is provided as a way to include Nexosis API functionality in your own JavaScript software.

Usage

Add the library to your project by installing from NPM.

yarn add nexosis-api-client

Creating a new NexosisClient with an API key allows you to make calls to the API. Each property of the client allows you to interact with a different part of the API.

const NexosisClient = require('nexosis-api-client').default
const client = new NexosisClient({ key: nexosisApiKey });

client.DataSets.list().then(dataSets => Console.log(dataSets.items));
client.Sessions.list().then(sessions => Console.log(sessions.items));

Each request returns a Promise, with the body of the response.

More Information

You can read about the Nexosis API at http://docs.nexosis.com/

Refer to the detailed API documentation at https://developers.nexosis.com

Pull requests are welcome

Build Status

Dependents (0)

Package Sidebar

Install

npm i nexosis-api-client

Weekly Downloads

0

Version

3.0.0

License

Apache-2.0

Unpacked Size

233 kB

Total Files

42

Last publish

Collaborators

  • nexosis-js