An esbuild plugin to generate extra pino files for bundling
npm install esbuild-plugin-pinoIf you're using Yarn with Plug'n'Play (PnP), you may need to add package extensions to your .yarnrc.yml file to ensure proper dependency resolution:
packageExtensions:
"esbuild-plugin-pino@*":
dependencies:
"pino": "*"
"pino-pretty": "*"
"thread-stream": "*"This ensures that the plugin can properly locate and bundle the required Pino dependencies in a PnP environment.
This plugin allows to use of pino v7 ~ v9 with esbuild generated bundle files.
Note that, due to pino architecture (based on Node.js' Worker Threads), it is not possible to make it work without generating extra files.
This means that when using this plugin the following list of files will be generated at the root of your dist folder:
thread-stream.jspino-worker.jspino-pipeline-worker.js(no longer required after Pino v9.1.0)pino-file.js
A file for each transport you specify in the plugin constructor's transports option. (see below)
Each of the additional file is a bundle and therefore does not contain any external dependency, but it is needed to use pino and it must be included in the deployment.
Simply include the plugin in your esbuild build script. Make sure you provide the plugin a list of all the pino transports you use via the transports option (pino/file is always included so no need to specify it).
// General usage
const { build } = require("esbuild");
const esbuildPluginPino = require("esbuild-plugin-pino");
build({
entryPoints: ["src/index.ts"],
outdir: "dist",
plugins: [esbuildPluginPino({ transports: ["pino-pretty"] })],
}).catch(() => process.exit(1));// Multiple entryPoints & pino transports
const { build } = require("esbuild");
const esbuildPluginPino = require("esbuild-plugin-pino");
build({
entryPoints: {
first: "./first.js",
"abc/cde/second": "./second.js",
},
outdir: "dist",
plugins: [esbuildPluginPino({ transports: ["pino-pretty", "pino-loki"] })],
}).catch(() => process.exit(1));// Start from esbuild@^0.17.1
// Multiple entryPoints in an array of object & pino transports
const { build } = require("esbuild");
const esbuildPluginPino = require("esbuild-plugin-pino");
build({
entryPoints: [
{
in: "./test/fixtures/first.js",
out: "first",
},
{
in: "./test/fixtures/second.js",
out: "abc/cde/second",
},
],
outdir: "dist",
plugins: [esbuildPluginPino({ transports: ["pino-pretty", "pino-loki"] })],
}).catch(() => process.exit(1));If you use docker or severless function like AWS Lambda, make sure to use the same outdir in your production.
Ex: If your outdir is set to dist in esbuild, you need to copy the whole dist but not extracting files into the docker image root folder.
- Reference: Pino Bundling
- Inspired by pino-esbuild.js and kudos to @ShogunPanda & @scorsi