NodeJs
How to install and get started with Sky Ledge's NodeJs SDK
The Sky Ledge SDK provides convenient access to the Sky Ledge API from applications written in both server-side and client-side JavaScript/Typescript.
npm install @skyledge/sdk --save
yarn add @skyledge/sdk
The package needs to be configured with your account's API key, which is available from the Management section of your Sky Ledge account. Checkout Getting your Sky Ledge API Key for more detail
import { Configuration } from '@skyledge/sdk';
const configuration = new Configuration({
apiKey: 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXX',
basePath: 'https://api.skyledge.com'
});
Once you have your configuration object, you can instantiate the different Sky Ledge APIs. Here's an example of instantiating the Asset API:
import { Configuration, AssetsApi } from '@skyledge/sdk';
const configuration = new Configuration({
apiKey: 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXX',
basePath: 'https://api.skyledge.com'
});