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.1 platform.
Download (HTTP): https://nodejs.org/dist/v8.4.0/node-v8.4.0.tar.xz
Download MD5 sum: e6c85c83001340b30671e9432e1bd337
Download size: 18 MB
Estimated disk space required: 349 MB
Estimated build time: 11.3 SBU
c-ares-1.12.0, ICU-59.1, and OpenSSL-1.0.2l Libraries
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:
PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig \ ./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-8.4.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 2017-08-21 21:02:12 -0700