Coder Social home page Coder Social logo

esbuild-loader's Introduction

esbuild-loader

Speed up your Webpack build with esbuild! 🔥

esbuild is written in Go, and supports blazing fast ESNext & TypeScript transpilation, and JS minification.

🚀 Install

npm i -D esbuild-loader

🚦 Quick Setup

Javascript transpilation (eg. Babel)

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()
    ]
  }

TypeScript & TSX

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()
    ]
  }

Minification (eg. Terser)

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 target option helps esbuild be smart about using new and concise 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.

⚙️ Options

Loader

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
    • Possible values: js, jsx, ts, tsx, json, text, base64, file, dataurl, binary
  • jsxFactory <String> - What to use instead of React.createElement
  • jsxFragment <String> - What to use instead of React.Fragment

Enable source-maps via devtool

MinifyPlugin

  • target <String> (esnext) - Environment target (e.g. es2016, chrome80, esnext)
  • minify <Boolean> (true) - Sets all --minify-* flags
  • minifyWhitespace <Boolean> - Remove whitespace
  • minifyIdentifiers <Boolean> - Shorten identifiers
  • minifySyntax <Boolean> - Use equivalent but shorter syntax
  • sourcemap <Boolean> (defaults to Webpack devtool)- Whether to emit sourcemaps

💼 License

esbuild-loader's People

Contributors

privatenumber avatar egoist avatar d34thwings avatar danburzo avatar airhorns avatar zhusjfaker avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.