
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@farmfe/plugin-strip
Advanced tools
🍣 A Farm rust plugin to remove `debugger` statements and functions like `assert.equal` and `console.log` from your code.
🍣 A Farm rust plugin to remove debugger
statements and functions like assert.equal
and console.log
from your code.
This plugin requires an LTS Node version (v18.0.0+) and Farm v1.0.0+.
Using npm:
npm i @farmfe/plugin-strip
Create a farm.config.js
configuration file and import the plugin:
import { defineConfig } from '@farmfe/core';
import strip from '@farmfe/plugin-strip-darwin-arm64';
export default defineConfig({
// ...
plugins: [
[
strip({
// plugin options
functions:[ 'console.*', 'assert.*' ],
labels: ['unittest']
})
]
],
// ...
});
include
Type: String | RegExp | Array[...String|RegExp]
Default: ['**/*.js']
Example: include: '**/*.(mjs|js)',
A pattern, or array of patterns, which specify the files in the build the plugin should operate on.
exclude
Type: String | RegExp | Array[...String|RegExp]
Default: []
Example: exlude: 'tests/**/*',
A pattern, or array of patterns, which specify the files in the build the plugin should ignore.
debugger
Type: Boolean
Default: true
Example: debugger: false,
If true
instructs the plugin to remove debugger statements.
functions
Type: Array[...String]
Default: [ 'console.*', 'assert.*' ]
Example: functions: [ 'console.log', 'MyClass.Test' ],
Specifies the functions that the plugin will target and remove.
Note: specifying functions that are used at the begining of a chain, such as 'a().b().c()', will result in '(void 0).b().c()' which will generate an error at runtime.
labels
Type: Array[...String]
Default: []
Example: labels: ['unittest'],
Specifies the labeled blocks or statements that the plugin will target and remove.
Note: the ':' is implied and should not be specified in the config.
sourceMap
Type: Boolean
Default: true
Example: sourceMap: false,
If true
, instructs the plugin to update source maps accordingly after removing configured targets from the bundle.
FAQs
🍣 A Farm rust plugin to remove `debugger` statements and functions like `assert.equal` and `console.log` from your code.
The npm package @farmfe/plugin-strip receives a total of 4 weekly downloads. As such, @farmfe/plugin-strip popularity was classified as not popular.
We found that @farmfe/plugin-strip demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.