Package Exports
- lancerkit
- lancerkit/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (lancerkit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Lancerkit SDK
The Lancerkit SDK is a Javascript library that provides an easy-to-use interface for integrating the Lancerkit web application into your own applications.
Installation
You can install the Lancerkit SDK using npm:
npm install lancerkit
Usage
First, you need to create an instance of the Lancerkit class with your Lancerkit API key (in order to get your key, please signup at https://lancerkit.com ):
import {Lancerkit} from 'lancerkit';
const lancerkit = new Lancerkit('YOUR_API_KEY');
Then, you can call the different methods to interact with the application.
For instance:
let {data} = await lancerkit.listDocuments({page: 2, sort: '-date'})
Contributing
If you would like to contribute to the Lancerkit SDK, please submit a pull request on Github.