使用 Node.js 构建独立可执行文件
原文英文,约200词,阅读约需1分钟。发表于: 。Node.js has experimental support for building a single executable application, or SEA, which is what the team calls a standalone executable that can be distributed to supported platforms. The way...
Node.js 现在支持构建单一可执行应用程序(SEA),可以在支持的平台上分发。通过将一个 blob 注入到 node 二进制文件中实现,这个 blob 可以是 JavaScript 文件。虽然开发体验不如 Deno 或 Bun.js,但我编写了一个脚本简化了 Linux 和 Darwin 平台的 SEA 构建,并尝试了 Windows 平台。详细信息在我的博客中。