@jupiterone/integration-sdk
v3.1.0
Published
The SDK for developing JupiterOne integrations
Downloads
1,094
Readme
jupiter-integration-sdk
NOTE: This project is currently under development and the API interface is not stable. Use at your own risk.
Home of the next version of the integration sdk.
Installation
npm install @jupiterone/integration-sdk
# or
yarn add @jupiterone/integration-sdk
Integration Development
Please reference the development documentation for details about how to develop integrations with this SDK.
An example template project can be found here.
Integration SDK Development
If you are making changes to the integration SDK and you want to test the changes in another integration project then it is recommended to automatically rebuild and link this project when changes are made.
Steps to automatically build and link:
Run
yarn autobuild
in this project from a terminal and wait for initial build to complete.In a separate terminal, run
yarn link @jupiterone/integration-sdk
in the integration project. You can now use the integration SDK CLI in the other project and it will use the latest code on your filesystem.