Sealing Application Dependencies
Code examples
npm project
# Initialize an npm project
npm init -y
# Install example dependency
npm install [email protected]
# Scan the manifest file for vulnerable packages and create a local configuration
# file telling the CLI to fix the example dependency
seal scan --generate-local-config
# Note that a .seal-actions.yml file was created
# Fix the example dependencies by replacing them with their sealed versions
seal fixpip project
Maven project
Gradle project
Composer project
Last updated