
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@chialab/esbuild-plugin-alias
Advanced tools
A plugin for esbuild that resolves aliases or empty modules.
Esbuild Plugin Alias • A plugin for esbuild that resolves aliases or empty modules.
$ npm i @chialab/esbuild-plugin-alias -D
$ yarn add @chialab/esbuild-plugin-alias -D
Load path-browser.js
instead of the node's path
module:
import esbuild from 'esbuild';
import aliasPlugin from '@chialab/esbuild-plugin-alias';
await esbuild.build({
plugins: [
aliasPlugin({
'node-fetch': false,
'path': '../path-browser.js'
}),
],
});
Load node-fetch
module as an empty module:
import esbuild from 'esbuild';
import aliasPlugin from '@chialab/esbuild-plugin-alias';
await esbuild.build({
plugins: [
aliasPlugin({
'node-fetch': false,
}),
],
});
Load aliases from browser
field in package.json:
package.json
{
"name": "webapp",
"version": "0.0.0",
"browser": {
"path": "./browser-path.js",
"node-fetch": false,
}
}
import esbuild from 'esbuild';
import aliasPlugin from '@chialab/esbuild-plugin-alias';
await esbuild.build({
platform: 'browser',
plugins: [
aliasPlugin(),
],
});
Esbuild Plugin alias is released under the MIT license.
FAQs
A plugin for esbuild that resolves aliases or empty modules.
The npm package @chialab/esbuild-plugin-alias receives a total of 22 weekly downloads. As such, @chialab/esbuild-plugin-alias popularity was classified as not popular.
We found that @chialab/esbuild-plugin-alias 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.