Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@ms-cloudpack/bundler-plugin-esbuild
Advanced tools
This library provides an abstraction on bundling a package, assuming that the package is conformant.
Rather than directly depending on Webpack, rollup, or esbuild with large amounts of custom configuration, having an abstraction around bundling provides constraints around having common inputs/outputs.
This enforces the code follow consistent constraints, while also ensuring the output can be consumed in the browser or in node depending on supported environments.
Abstraction also allows us to use the right tool for the job. The right tool depends on priorities and capabilities. For dev builds we want the fastest tool, while for production we want optimal output. For library mode builds on commonjs only packages, esbuild doesn't emit named exports while rollup does. Maybe later esbuild will address that issue, so we can adjust the regulation logic accordingly.
async function bundlePackage(options)
import { bundlePackage } from '@ms-cloudpack/bundler';
async function start() {
const result = await bundlePackage({
packagePath: process.cwd(),
outputPath: path.join(process.cwd(), 'dist'),
outputType: 'library',
});
console.log(result);
}
start();
bundlePackage
optionsName | Type | Description |
---|---|---|
packagePath | string | Path to the package root where package.json lives. |
force | boolean | Bypasses the cache to create bundles. |
hashFrom | "package-version" | "git" | Determines how the cache key is computed for bundle results. |
output | "library" | "app" |
Name | Type | Description |
---|---|---|
stats | ||
outputMap |
The Cloudpack bundler abstraction is simple and constrained on purpose:
This library has only 2 output modes:
Entry points are discovered by analyzing the package.json. This ensures only explicit entries are bundled.
Under the hood, if we want to separate the process into multiple steps, we may consider using task helpers like just-scripts
or heft
to execute things in the right order. This might help
FAQs
An abstraction to bundle source code.
We found that @ms-cloudpack/bundler-plugin-esbuild demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.