Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine.
Development versions of BLFS may not build or run some packages properly if dependencies have been updated since the most recent stable versions of the book.
Download (HTTP): https://nodejs.org/dist/v18.14.0/node-v18.14.0.tar.xz
Download MD5 sum: 39114a9c79a3c930fefd2bb59c0f3cb7
Download size: 40 MB
Estimated disk space required: 901 MB (add 30 MB for tests)
Estimated build time: 15 SBU (add 3.6 SBU for tests: both using parallelism=4 and 4 CPUs online, parts of the tests will use all online CPUs)
c-ares-1.19.0, ICU-72.1, libuv-1.44.2, and nghttp2-1.51.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:
./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.
Now, as the root
user:
make install && ln -sf node /usr/share/doc/node-18.14.0
--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.