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-10.0 platform.
Download (HTTP): https://nodejs.org/dist/v12.18.3/node-v12.18.3.tar.xz
Download MD5 sum: cb746f860a64fced875d8aa3ebf69591
Download size: 23 MB
Estimated disk space required: 677 MB (add 39 MB for tests)
Estimated build time: 8.0 SBU (using parallelism=4; add 2.9 SBU for tests)
c-ares-1.16.1, ICU-67.1, libuv-1.38.1, and nghttp2-1.41.0
http-parser and npm (an internal copy of npm will be installed if not present)
User Notes: http://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-12.18.3
- -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 2020-08-16 21:26:53 -0700