Socket
Socket
Sign inDemoInstall

@contrast/agent-swc-plugin

Package Overview
Dependencies
Maintainers
0
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@contrast/agent-swc-plugin

SWC plugins Contrast Node agent


Version published
Weekly downloads
24K
decreased by-4.95%
Maintainers
0
Weekly downloads
 
Created
Source

Contrast Node Agent v5 swc plugins

swc plugins for the Node agent's swc rewriter.

Setup

See: https://swc.rs/docs/plugin/ecmascript/getting-started

Install rust

https://www.rust-lang.org/tools/install

Add wasm target

https://blog.rust-lang.org/2024/04/09/updates-to-rusts-wasi-targets.html

rustup target add wasm32-wasip1

Install and test

cargo test runs the rust unit tests for all plugins. npm test runs the JavaScript unit tests

Building

To build release-ready targets, either run npm run build or cargo build --release --target wasm32-wasip1.

Usage

These plugins are designed to be used programmatically from @swc/core.

const { transformSync } = require('@swc/core');
const {
  defaultRewriter,
  defaultUnwriter,
  // this is not being built or released until a need arises
  //noPropagationRewriter
} = require('@contrast/agent-swc-plugin');

const result = transformSync(src, {
  env: {
    targets: {
      node: '18', // specify your (lowest) node version
    },
  },
  jsc: {
    experimental: {
      plugins: [[defaultRewriter], { assess: true, inject: true }]],
    },
  },
});

Releasing

Run npm version <major|minor|patch> to bump the version. Push the changes and tag to the repo.

When the version bump is merged to main, invoke the release workflow using either the GitHub UI or the gh CLI program.

Keywords

FAQs

Package last updated on 10 Sep 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