This is a TypeScript library for interacting with OpenCTI
pnpm run build
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.