Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine.
This package is known to build and work properly using an LFS-11.0 platform.
Download (HTTP): https://nodejs.org/dist/v14.17.5/node-v14.17.5.tar.xz
Download MD5 sum: 8ec7b05141efe9de286a78506e116735
Download size: 32 MB
Estimated disk space required: 751 MB
Estimated build time: 11 SBU (using parallelism=4; add 2.6 SBU for tests)
c-ares-1.17.2, ICU-69.1, libuv-1.42.0, and nghttp2-1.44.0
http-parser and npm (an internal copy of npm will be installed if not present)
User Notes: https://wiki.linuxfromscratch.org/blfs/wiki/nodejs
Build Node.js by running the following commands:
sed -i 's|ares_nameser.h|arpa/nameser.h|' src/cares_wrap.h && ./configure --prefix=/usr \ --shared-cares \ --shared-libuv \ --shared-openssl \ --shared-nghttp2 \ --shared-zlib \ --with-intl=system-icu && make
To test the results, issue: make test-only. One test in test/parallel/test-uv-errno.js is known to fail with libuv-1.42.0.
Now, as the root
user:
make install && ln -sf node /usr/share/doc/node-14.17.5
sed -i 's%ares_\(nameser.h\)%arpa/\1%'
...
: This fixes building with the system version of
c-ares.
--with-intl=system-icu
: use
the system version of icu. Other
values are full-icu
(to build a local,
full icu library) and small-icu
(to build a local, minimal icu library).
--shared-{cares,libuv,nghttp2,openssl,zlib}
:
use the system installed libraries instead of local copies.
--without-npm
: do not build
npm (use if you'd like to build a
separate npm later).
--shared-http-parser
: use the system
installed library instead of a local copy.
Last updated on