The minimalist builds of Node.JS.
| Name | Explanation |
|---|---|
| lto | The build was built with link-time optimizations. |
| clang | The build was built with clang instead of gcc/msvc. |
| ptr_compr | The build was built with experimental pointer compression enabled. |
| icu_none | The build was built without any intl support, which means Intl.xxx part would be missing, and JS features like .toLocaleString() would be unavailable. |
| icu_system | The build was built with intl support with system icu. More details. |
| upx | The build was wrapped with upx packer. |
| v8_opts | The build was built without v8/Node.JS debugging features. |
| nojit | The build was built without v8 Just-in-Time compilation support. |