@prismlabs/web-scan-core
v1.0.1
Published
Core functionality for the Prism web scanning SDK
Readme
Prism Web Scan Core
Importing the Package
Add the package to your package.json dependencies:
{
"dependencies": {
"@prismlabs/web-scan-core": "^x.y.z"
}
}Or install directly:
npm install @prismlabs/web-scan-core
# or
yarn add @prismlabs/web-scan-coreThen import in your code:
import { PrismScanner } from '@prismlabs/web-scan-core'What is this?
This package contains all the core logic for creating and running a scan using the Prism system. It provides the main scanner class, event handling, and utilities for integrating scanning into your web application.
Instantiating a Scanner
To create a new scanner instance, use the PrismScanner class:
import { PrismScanner } from '@prismlabs/web-scan-core'
const scanner = new PrismScanner({
// ...your configuration options here
})See the documentation for available configuration options.
Customization
Prism Web Scan Core supports extensive customization, including UI, localization, and event hooks. For details, refer to the documentation: Customization Guide
