Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cyclonedx/webpack-plugin

Package Overview
Dependencies
Maintainers
0
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cyclonedx/webpack-plugin

Creates CycloneDX Software Bill of Materials (SBoM) from webpack projects

  • 3.15.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

CycloneDX webpack plugin

shield_npm-version shield_gh-workflow-test shield_coverage shield_ossf-best-practices shield_license
shield_website shield_slack shield_groups shield_twitter-follow


This plugin for webpack creates a CycloneDX Software Bill of Materials (SBoM) containing an aggregate of all bundled dependencies.
This plugin uses the linkages generated by webpack to create a dependency graph which only contain the dependencies that are actually used (after tree-shaking).

Requirements

  • Node.js >= 14
  • webpack ^5

However, there are older versions of this plugin, that support

  • Node.js v8.0.0 or higher
  • webpack v4.0.0 or higher

Installing

npm i -D @cyclonedx/webpack-plugin
yarn add -D @cyclonedx/webpack-plugin

Usage

new CycloneDxWebpackPlugin(options?: object)

Options & Configuration

NameTypeDefaultDescription
specVersion{string}
one of: "1.2", "1.3", "1.4", "1.5", "1.6"
"1.4"Which version of CycloneDX-spec to use.
Supported values depend on the installed dependency CycloneDX-javascript-library.
reproducibleResults{boolean}falseWhether to go the extra mile and make the output reproducible.
Reproducibility might result in loss of time- and random-based-values.
validateResults{boolean}trueWhether to validate the BOM result.
Validation is skipped, if requirements not met. Requires transitive optional dependencies.
outputLocation{string}"./cyclonedx"Path to write the output to. The path is relative to webpack's overall output path.
includeWellknown{boolean}trueWhether to write the Wellknowns.
wellknownLocation{string}"./.well-known"Path to write the Wellknowns to. The path is relative to webpack's overall output path.
rootComponentAutodetect{boolean}trueWhether to try auto-detection of the RootComponent.
Tries to find the nearest package.json and build a CycloneDX component from it, so it can be assigned to bom.metadata.component.
rootComponentType{string}"application"Set the RootComponent's type.
See the list of valid values. Supported values depend on CycloneDX-javascript-library's enum ComponentType.
rootComponentNameoptional {string}undefinedIf rootComponentAutodetect is disabled, then this value is assumed as the "name" of the package.json.
rootComponentVersionoptional {string}undefinedIf rootComponentAutodetect is disabled, then this value is assumed as the "version" of the package.json.
collectEvidence{boolean}falseWhether to collect (license) evidence and attach them to the resulting SBOM.

Example

In your webpack config add the CycloneDX plugin:

const { CycloneDxWebpackPlugin } = require('@cyclonedx/webpack-plugin');

/** @type {import('@cyclonedx/webpack-plugin').CycloneDxWebpackPluginOptions} */
const cycloneDxWebpackPluginOptions = {
  specVersion: '1.6',
  outputLocation: './bom'
}

module.exports = {
  // ...
  plugins: [
    new CycloneDxWebpackPlugin(cycloneDxWebpackPluginOptions)
  ]
}

See extended examples.

Support for IETF /.well-known/sbom

The CycloneDX webpack plugin supports placing the CycloneDX SBOM in a pre-defined location, specifically in /.well-known/sbom. This option is enabled by default. The behavior can be changed by overriding the values of includeWellknown and wellknownLocation.
See draft-ietf-opsawg-sbom-access for more information on the specification, currently an IETF draft.

In your webpack config add the CycloneDX plugin:

const { CycloneDxWebpackPlugin } = require('@cyclonedx/webpack-plugin');

/** @type {import('@cyclonedx/webpack-plugin').CycloneDxWebpackPluginOptions} */
const cycloneDxWebpackPluginOptions = {
  includeWellknown: true,
  wellknownLocation: './.well-known'
}

module.exports = {
  // ...
  plugins: [
    new CycloneDxWebpackPlugin(cycloneDxWebpackPluginOptions)
  ]
}

Use with Angular

Angular uses webpack under the hood. Therefore, it is possible to integrate this plugin by utilizing @angular-builders/custom-webpack.
See an example here: integration with Angular17/webpack5.

Use with React

React uses webpack under the hood. Therefore, it is possible to integrate this plugin.
See an example here: integration with React18/webpack5.

Internals

This webpack plugin utilizes the CycloneDX library to generate the actual data structures.

Besides the class CycloneDxWebpackPlugin and the interface CycloneDxWebpackPluginOptions,
this webpack plugin does not expose any additional public API or classes - all code is intended to be internal and might change without any notice during version upgrades.

Development & Contributing

Feel free to open issues, bugreports or pull requests.
See the CONTRIBUTING file for details.

License

Permission to modify and redistribute is granted under the terms of the Apache 2.0 license.
See the LICENSE file for the full license.

Keywords

FAQs

Package last updated on 03 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc