
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@djaler/esbuild-loader
Advanced tools
Speed up your Webpack build with esbuild! 🔥
esbuild is a JavaScript bundler written in Go that supports blazing fast ESNext & TypeScript transpilation and JS minification.
esbuild-loader lets you harness the speed of esbuild in your Webpack build by offering faster alternatives for transpilation (eg. babel-loader/ts-loader) and minification (eg. Terser)!
If you like this project, please star it & follow me to see what other cool projects I'm working on! ❤️
npm i -D esbuild-loader
In webpack.config.js:
+ const { ESBuildPlugin } = require('esbuild-loader')
module.exports = {
module: {
rules: [
- {
- test: /\.js$/,
- use: 'babel-loader',
- },
+ {
+ test: /\.js$/,
+ loader: 'esbuild-loader',
+ options: {
+ target: 'es2015' // Syntax to compile to (see options below for possible values)
+ }
+ },
...
],
},
plugins: [
+ new ESBuildPlugin()
]
}
In webpack.config.js:
+ const { ESBuildPlugin } = require('esbuild-loader')
module.exports = {
module: {
rules: [
- {
- test: /\.tsx?$/,
- use: 'ts-loader'
- },
+ {
+ test: /\.tsx?$/,
+ loader: 'esbuild-loader',
+ options: {
+ loader: 'tsx', // Or 'ts' if you don't need tsx
+ target: 'es2015'
+ }
+ },
...
]
},
plugins: [
+ new ESBuildPlugin()
]
}
If you have a tsconfig.json file, you can pass it in via the tsconfigRaw option. Note, esbuild only supports a subset of tsconfig options and does not do type checks.
{
test: /\.tsx?$/,
loader: 'esbuild-loader',
options: {
loader: 'tsx',
target: 'es2015',
+ tsconfigRaw: require('./tsconfig.json')
}
}
You can replace JS minifiers like Terser or UglifyJs. Checkout the benchmarks to see how much faster esbuild is.
In webpack.config.js:
+ const {
+ ESBuildPlugin,
+ ESBuildMinifyPlugin
+ } = require('esbuild-loader')
module.exports = {
...,
+ optimization: {
+ minimize: true,
+ minimizer: [
+ new ESBuildMinifyPlugin({
+ target: 'es2015' // Syntax to compile to (see options below for possible values)
+ })
+ ]
+ },
plugins: [
+ new ESBuildPlugin()
]
}
💁♀️ Protip: Use the minify plugin in-place of the loader to transpile your JS
The
targetoption tells esbuild that it can use newer JS syntax to perform better minification. If you're not using TypeScript or any syntax unsupported by Webpack, you can also leverage this as a transpilation step. It will be faster because there's less files to work on and will produce a smaller output because the polyfills will only be bundled once for the entire build instead of per file.
The loader supports options from esbuild.
target <String> (es2015) - Environment target (e.g. es2016, chrome80, esnext)loader <String> (js) - Which loader to use to handle file
js, jsx, ts, tsx, json, text, base64, file, dataurl, binaryjsxFactory <String> - What to use instead of React.createElementjsxFragment <String> - What to use instead of React.FragmentEnable source-maps via devtool
target <String> (esnext) - Environment target (e.g. es2016, chrome80, esnext)minify <Boolean> (true) - Sets all minify flagsminifyWhitespace <Boolean> - Remove whitespaceminifyIdentifiers <Boolean> - Shorten identifiersminifySyntax <Boolean> - Use equivalent but shorter syntaxsourcemap <Boolean> (defaults to Webpack devtool)- Whether to emit sourcemapsFAQs
⚡️ Speed up your Webpack build with esbuild
The npm package @djaler/esbuild-loader receives a total of 2 weekly downloads. As such, @djaler/esbuild-loader popularity was classified as not popular.
We found that @djaler/esbuild-loader 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.