
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
bify-package-factor
Advanced tools
Browserify plugin that creates bundles factored at package-level granularity. The browserify stream output becomes a `vinyl-source-stream`, emitting one `vinyl` file metadata object per bundle.
Browserify plugin that creates bundles factored at package-level granularity.
The browserify stream output becomes a vinyl-source-stream
, emitting one vinyl
file metadata object per bundle.
This will generate three bundles. One bundle for packages unique to each of the entrypoints, and one common bundle for packages that are used by both.
const bundler = browserify(['entry1.js', 'entry2.js'])
.plugin('bify-package-factor')
bundler.bundle()
.pipe(gulp.dest('./bundles/'))
You can then import the common bundle as well as your entry-specific bundle.
<title>page one</title>
<script src="./bundles/common.js">
<script src="./bundles/entry1.js">
<title>page two</title>
<script src="./bundles/common.js">
<script src="./bundles/entry2.js">
FAQs
Browserify plugin that creates bundles factored at package-level granularity. The browserify stream output becomes a `vinyl-source-stream`, emitting one `vinyl` file metadata object per bundle.
We found that bify-package-factor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.