Skip to content

Instantly share code, notes, and snippets.

@LouisJULIEN
LouisJULIEN / npm_packages_thunderbird.md
Last active January 13, 2025 17:47
How to integrate NPM packages into a Thunderbird Plugin

How to integrate NPM packages into a Thunderbird Plugin

This is the short story of how I integrated two modified NPM packages with (lots of) transitive dependencies into my Thunderbird Plugin. I managed to overcome the Babel dependency of each package. Everything I show is running on Thunderbird 128esm.

TL;DR

I packaged the NPM packages with esbuild

npm install esbuild
esbuild entry_file.js --bundle --outfile=bundled_entry_file_and_dependencies.js --format=esm