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.2 platform.
Download (HTTP): https://nodejs.org/dist/v9.5.0/node-v9.5.0.tar.xz
Download MD5 sum: a3a2f6820aa81459e63a11b175e69c8c
Download size: 18 MB
Estimated disk space required: 318 MB
Estimated build time: 3.6 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.5.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 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-02-25 15:41:39 -0800