Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
browserify-webpack-plugin
Advanced tools
Simple, yet comprehensive webpack plugin to bundle almost any javascript/typescript project for modern browsers.
Simple, yet comprehensive webpack plugin to bundle almost any javascript/typescript project for modern browsers.
Level of support is the union of both Webpack2 and Browserify3 shims, in addition to the following features:
This plugin also takes care of selectively applying these shims and properly initialize their respective libraries.
This plugin uses Webpack's "Extends" feature in its configuration. This allows you more flexibility in how you configure your project.
# in your project directory
npm install --save-dev browserify-webpack-plugin
// webpack.config.js
const path = require("path");
module.exports = {
extends: require.resolve("browserify-webpack-plugin"),
mode: "development",
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bundle.js",
},
};
The plugin accepts a few command line arguments:
--env include**="<pathOrGlob>"
where **
may be optionally repeated with different values to form an array and self document what is being included next to the bundle.--env exclude**="<pathOrGlob>"
where **
may be optionally substituted just like above, these patterns will be excluded from the emitted memory asset.--env memory="<unique>"
where <unique>
is mem.zip
by default. This is wasabio
's starter memory archive.--env listen="<address>"
where <address>
is localhost:8080
by default. This is fakettp
's starter address.--env docker="<image>"
where <image>
is Latest Debian Slim
by default. This is brocess
's starter container.Example invocation in your repository after extending this package in your webpack.config.js
:
# emits "mem.zip" in the output directory which includes the following globs in wasabio's memory:
webpack --env includeSrc='mods/*' --env includeIndex='index.js' --env exclude='tty.ts'
This project is not associated with the original Browserify project. ↩
FAQs
Simple, yet comprehensive webpack plugin to bundle almost any javascript/typescript project for modern browsers.
We found that browserify-webpack-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.