@security-alliance/opencti-client
v0.1.2
Published
OpenCTI client
Downloads
1,160
Readme
opencti-client
This is a TypeScript library for interacting with OpenCTI
Build
pnpm run build
Local Development
Testing
To test this package in an external project:
Build the package locally:
pnpm run build
Link the opencti-client globally
pnpm link --global
- Link in your test project
pnpm link --global @security-alliance/opencti-client
Import and use the package in your external project:
import { OpenCTIClient } from "@seal-isac/opencti-client"; // Use the package as needed
Run your external project to test the integration.
When finished testing, remove the local reference from your external project's
package.json
and runpnpm install
again to clean up.