
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
@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
The npm package @hyrious/esbuild-plugin-external receives a total of 6 weekly downloads. As such, @hyrious/esbuild-plugin-external popularity was classified as not popular.
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.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.