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-8.3 platform.
Download (HTTP): https://nodejs.org/dist/v9.11.2/node-v9.11.2.tar.xz
Download MD5 sum: b38d2f3cbfe05963f151dd7548779aba
Download size: 18 MB
Estimated disk space required: 318 MB
Estimated build time: 4.0 SBU (using parallelism=4)
http-parser, libuv, 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-openssl \ --shared-zlib \ --with-intl=system-icu && make
This package does not come with a test suite.
Now, as the root
user:
make install && ln -sf node /usr/share/doc/node-9.11.2
--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 to build a local, minimal
icu library).
--shared-{cares,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,libuv}
: use the
system installed libraries instead of local copies.
Last updated on 2018-08-22 15:55:27 -0700