Node.js-8.4.0

Introduction to Node.js

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.

Package Information

Node.js Dependencies

Required

Python-2.7.13

Recommended

Optional

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

Installation of Node.js

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

Command Explanations

--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.

Contents

Installed Programs: /usr/bin/node and /usr/bin/npm
Installed Library: None
Installed Directories: /usr/lib/node_modules/npm/

Short Descriptions

node

is the server-side JavaScript runtime.

npm

is the Node.js package manager.

/usr/lib/node_modules/npm/

is the installation root for Node.js executables and libraries.

Last updated on 2017-08-21 21:02:12 -0700