
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@hyrious/esbuild-plugin-external
Advanced tools
An esbuild plugin to help you compute and mark external modules manually.
dependencies and peerDependencies from package.json.with { external: "./replacement.js" }.import external from '@hyrious/esbuild-plugin-external'
await esbuild.build({
entryPoints: ['src/index.ts', 'src/cli.ts'],
bundle: true,
format: 'esm',
platform: 'node',
packages: 'bundle',
plugins: [external()]
}).catch(() => process.exit(1))
external({
package: true,
filter: /\.ts$/,
auto: [{ filter: /\.js$/ }],
})
package: Automatically mark dependencies and peer dependencies from package.json. This is enabled by default.
filter: Filter in files to be enhanced to use import attribute with { external: "replace" }.
This is disabled by default, you need to pass in a regex to make it work.
Example:
import * as mod from '../foo' with { external: "./foo.js" }
// will be bundled into =>
import * as mod from './foo.js'
auto: Filter in paths to be externalized and perform a simple replacement to strip leading '../'s.
This is disabled by default, you need to pass in a config to make it work.
Example:
// auto: [{ filter: /\.js$/ }]
import * as mod from './index.js' // will be marked external
import * as mod from '../foo.js' // will be externalized as './foo.js'
MIT @ hyrious
FAQs
Compute and mark external modules
We found that @hyrious/esbuild-plugin-external 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.