This PR fixes an issue introduced when we removed `/nx-api` pages: https://github.com/nrwl/nx/pull/31453. Most of the old `/nx-api/<plugin>` URLs should now go to `/technologies/<plugin>/introduction`, since those pages contain what was on the previous "overview" pages. The only exception are places where we explicitly link to `.../api/{generators,executors,migrations}` URLs, and the following three blog posts that we want users to land on the API index. - https://github.com/nrwl/nx/blob/master/docs/blog/2022-03-29-the-react-cli-you-always-wanted-but-didnt-know-about.md?plain=1#L132 (https://nx.dev/blog/the-react-cli-you-always-wanted-but-didnt-know-about) - https://github.com/nrwl/nx/blob/master/docs/blog/2022-04-08-what-is-new-in-nx-13-10.md?plain=1#L245 (https://nx.dev/blog/what-is-new-in-nx-13-10) - https://github.com/nrwl/nx/blob/master/docs/blog/2022-05-02-nx-v14-is-out-here-is-all-you-need-to-know.md?plain=1#L253 (https://nx.dev/blog/nx-v14-is-out-here-is-all-you-need-to-know)
137 lines
3.6 KiB
Markdown
137 lines
3.6 KiB
Markdown
---
|
|
title: Overview of the Nx esbuild Plugin
|
|
description: The Nx Plugin for esbuild contains executors and generators that support building applications using esbuild. This page also explains how to configure esbuild on your Nx workspace.
|
|
---
|
|
|
|
The Nx Plugin for [esbuild](https://esbuild.github.io/api/), an extremely fast JavaScript bundler.
|
|
|
|
Why should you use this plugin?
|
|
|
|
- _Fast_ builds using esbuild.
|
|
- Type-checking using TypeScript, which esbuild does not handle.
|
|
- Intelligent `package.json` output.
|
|
- Additional [assets](/technologies/build-tools/esbuild/api/executors/esbuild#assets) for the output.
|
|
|
|
## Setting Up @nx/esbuild
|
|
|
|
### Installation
|
|
|
|
{% callout type="note" title="Keep Nx Package Versions In Sync" %}
|
|
Make sure to install the `@nx/esbuild` version that matches the version of `nx` in your repository. If the version numbers get out of sync, you can encounter some difficult to debug errors. You can [fix Nx version mismatches with this recipe](/recipes/tips-n-tricks/keep-nx-versions-in-sync).
|
|
{% /callout %}
|
|
|
|
In any Nx workspace, you can install `@nx/esbuild` by running the following command:
|
|
|
|
```shell {% skipRescope=true %}
|
|
nx add @nx/esbuild
|
|
```
|
|
|
|
This will install the correct version of `@nx/esbuild`.
|
|
|
|
## Using the @nx/esbuild Plugin
|
|
|
|
### Creating a new JS library
|
|
|
|
You can add a new library that builds using esbuild with:
|
|
|
|
```shell
|
|
nx g @nx/js:lib libs/mylib --bundler=esbuild
|
|
```
|
|
|
|
This command will install the esbuild plugin if needed, and set `@nx/esbuild:esbuild` executor for the `build` target.
|
|
|
|
### Adding esbuild target to existing libraries
|
|
|
|
If you already have a JS project that you want to use esbuild for, run this command:
|
|
|
|
```shell
|
|
nx g @nx/esbuild:configuration mylib
|
|
```
|
|
|
|
This generator validates there isn't an existing `build` target. If you want to overwrite the existing target you can pass the `--skipValidation` option.
|
|
|
|
```shell
|
|
nx g @nx/esbuild:configuration mylib --skipValidation
|
|
```
|
|
|
|
## Using esbuild
|
|
|
|
You can run builds with:
|
|
|
|
```shell
|
|
nx build mylib
|
|
```
|
|
|
|
Replace `mylib` with the name or your project. This command works for both applications and libraries.
|
|
|
|
### Copying assets
|
|
|
|
Assets are non-JS and non-TS files, such as images, CSS, etc. You can add them to the project configuration as follows.
|
|
|
|
```jsonc
|
|
"build": {
|
|
"executor": "@nx/esbuild:esbuild",
|
|
"options": {
|
|
//...
|
|
"assets": [
|
|
{ "input": "libs/mylib", "glob": "README.md", "output": "/" },
|
|
{ "input": "libs/mylib", "glob": "logo.png", "output": "/" },
|
|
{ "input": "libs/mylib", "glob": "docs/**/*.md", "output": "/docs" },
|
|
//...
|
|
]
|
|
}
|
|
}
|
|
```
|
|
|
|
Running `nx build mylib` outputs something like this.
|
|
|
|
```text
|
|
dist/libs/mylib/
|
|
├── README.md
|
|
├── docs
|
|
│ ├── CONTRIBUTING.md
|
|
│ └── TESTING.md
|
|
├── index.js
|
|
├── logo.png
|
|
└── package.json
|
|
```
|
|
|
|
### Generating a metafile
|
|
|
|
A metafile can be generated by passing the `--metafile` option. This file contains information about the build that can be analyzed by other tools, such as [bundle buddy](https://www.bundle-buddy.com/esbuild).
|
|
|
|
```shell
|
|
nx build mylib --metafile
|
|
```
|
|
|
|
This command will generate a `meta.json` file in the output directory.
|
|
|
|
```text
|
|
dist/libs/mylib/
|
|
├── README.md
|
|
├── index.js
|
|
├── meta.json
|
|
└── package.json
|
|
```
|
|
|
|
### Custom esbuild options
|
|
|
|
Extra API options for esbuild can be passed in the `esbuildOptions` object for your project configuration.
|
|
|
|
```jsonc
|
|
"build": {
|
|
"executor": "@nx/esbuild:esbuild",
|
|
"options": {
|
|
//...
|
|
"esbuildOptions": {
|
|
"banner": { ".js": "// banner" },
|
|
"footer": { ".js": "// footer" }
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
## More Documentation
|
|
|
|
- [Using JS](/technologies/typescript/introduction)
|