source: general/genlib/nodejs.xml@ 2554b06

12.0 12.1 kea ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 2554b06 was 2554b06, checked in by Bruce Dubbs <bdubbs@…>, 16 months ago

Update to node-18.15.0.

  • Property mode set to 100644
File size: 7.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY nodejs-download-http "https://nodejs.org/dist/v&nodejs-version;/node-v&nodejs-version;.tar.xz">
8 <!ENTITY nodejs-download-ftp " ">
9 <!ENTITY nodejs-md5sum "e47313b64127759e53010a3d04efbb67">
10 <!ENTITY nodejs-size "38 MB">
11 <!ENTITY nodejs-buildsize "901 MB (add 29 MB for tests)">
12 <!ENTITY nodejs-time "14 SBU (add 3.4 SBU for tests: both using parallelism=4 and 4 CPUs online, parts of the tests will use all online CPUs)">
13]>
14
15<sect1 id="nodejs" xreflabel="nodejs-&nodejs-version;">
16 <?dbhtml filename="nodejs.html"?>
17
18
19 <title>Node.js-&nodejs-version;</title>
20
21 <indexterm zone="nodejs">
22 <primary sortas="a-nodejs">nodejs</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to Node.js</title>
27
28 <para>
29 <application>Node.js</application> is a
30 <application>JavaScript</application> runtime built on
31 <application>Chrome's</application> V8 JavaScript engine.
32 </para>
33
34 &lfs113_checked;
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>
40 Download (HTTP): <ulink url="&nodejs-download-http;"/>
41 </para>
42 </listitem>
43 <listitem>
44 <para>
45 Download (FTP): <ulink url="&nodejs-download-ftp;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download MD5 sum: &nodejs-md5sum;
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download size: &nodejs-size;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Estimated disk space required: &nodejs-buildsize;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated build time: &nodejs-time;
66 </para>
67 </listitem>
68 </itemizedlist>
69
70<!--
71 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
72 <itemizedlist spacing="compact">
73 <listitem>
74 <para>
75 Required patch:
76 <ulink url="&patch-root;/node-v&nodejs-version;-icu_69-1.patch"/>
77 </para>
78 </listitem>
79 </itemizedlist>
80-->
81
82 <bridgehead renderas="sect3">Node.js Dependencies</bridgehead>
83
84 <bridgehead renderas="sect4">Required</bridgehead>
85 <para role="required">
86 <xref linkend="which"/>
87 </para>
88
89 <bridgehead renderas="sect4">Recommended</bridgehead>
90 <para role="recommended">
91 <xref linkend="c-ares"/>,
92 <xref linkend="icu"/>,
93 <xref linkend="libuv"/>, and
94 <xref linkend="nghttp2"/>
95 </para>
96
97 <bridgehead renderas="sect4">Optional</bridgehead>
98 <para role="optional">
99 <ulink url="https://github.com/nodejs/http-parser">http-parser</ulink> and
100 <ulink url="https://www.npmjs.com/">npm</ulink> (an internal copy of
101 <command>npm</command> will be installed if not present)
102 </para>
103
104 <para condition="html" role="usernotes">
105 User Notes: <ulink url="&blfs-wiki;/nodejs"/>
106 </para>
107
108 </sect2>
109
110 <sect2 role="installation">
111 <title>Installation of Node.js</title>
112
113<!--
114 <para>
115 First, apply a patch to fix building Node.js against ICU-69.1:
116 </para>
117
118<screen><userinput>patch -Np1 -i ../node-v&nodejs-version;-icu_69-1.patch</userinput></screen>
119-->
120<!-- Does not appear to be needed for version 18.13.0
121 <para>
122 The <command>configure</command> script for this version of Node.js is
123 not aware of Python-3.11. If you have installed <xref linkend="python3"/>,
124 apply the following change:
125 </para>
126
127<screen><userinput>sed -e '/=.*exec/a command -v python3.11 >/dev/null &amp;&amp; exec python3.11 "$0" "$@"' \
128 -e s'/((/((3, 11), (/' \
129 -i configure</userinput></screen>
130-->
131 <para>
132 Build <application>Node.js</application> by running the following
133 commands:
134 </para>
135
136<screen><userinput>./configure --prefix=/usr \
137 --shared-cares \
138 --shared-libuv \
139 --shared-openssl \
140 --shared-nghttp2 \
141 --shared-zlib \
142 --with-intl=system-icu &amp;&amp;
143make</userinput></screen>
144
145 <para>
146 To test the results, issue: <command>make test-only</command>.
147 Two tests (of 3800 tests), test-net-socket-connect-without-cb and i
148 test-tcp-wrap-listen, are known to fail.
149<!--
150Failed tests:
151out/Release/node /tmp/node-v18.14.1/test/parallel/test-cluster-bind-privileged-port.js
152-->
153 </para>
154
155 <para>
156 Now, as the <systemitem class="username">root</systemitem> user:
157 </para>
158
159<screen role="root"><userinput>make install &amp;&amp;
160ln -sf node /usr/share/doc/node-&nodejs-version;</userinput></screen>
161 </sect2>
162
163 <sect2 role="commands">
164 <title>Command Explanations</title>
165
166 <para>
167 <parameter>--with-intl=system-icu</parameter>: use the system version
168 of <application>icu</application>. Other values are
169 <option>full-icu</option> (to build a local, full
170 <application>icu</application> library) and <option>small-icu</option>
171 (to build a local, minimal <application>icu</application> library).
172 </para>
173
174 <para>
175 <parameter>--shared-{cares,libuv,nghttp2,openssl,zlib}</parameter>:
176 use the system installed libraries instead of local copies.
177 </para>
178
179 <para>
180 <option>--without-npm</option>: do not build
181 <application>npm</application> (use if you'd like to build a separate
182 <application>npm</application> later).
183 </para>
184
185 <para>
186 <option>--shared-http-parser</option>: use the system
187 installed library instead of a local copy.
188 </para>
189
190 </sect2>
191
192 <sect2 role="content">
193 <title>Contents</title>
194
195 <segmentedlist>
196 <segtitle>Installed Programs</segtitle>
197 <segtitle>Installed Library</segtitle>
198 <segtitle>Installed Directories</segtitle>
199
200 <seglistitem>
201 <seg>
202 corepack, node, npm, and npx
203 </seg>
204 <seg>
205 None
206 </seg>
207 <seg>
208 /usr/include/node,
209 /usr/lib/node_modules/{corepack,npm},
210 /usr/share/doc/{node,node-&nodejs-version;}, and
211 /usr/share/systemtap/tapset
212 </seg>
213 </seglistitem>
214 </segmentedlist>
215
216 <variablelist>
217 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
218 <?dbfo list-presentation="list"?>
219 <?dbhtml list-presentation="table"?>
220
221 <varlistentry id="corepack">
222 <term><command>corepack</command></term>
223 <listitem>
224 <para>
225 is an experimental tool to help with managing versions of package
226 managers.
227 </para>
228 <indexterm zone="nodejs corepack">
229 <primary sortas="b-corepack">corepack</primary>
230 </indexterm>
231 </listitem>
232 </varlistentry>
233
234 <varlistentry id="node">
235 <term><command>node</command></term>
236 <listitem>
237 <para>
238 is the server-side JavaScript runtime
239 </para>
240 <indexterm zone="nodejs node">
241 <primary sortas="b-node">node</primary>
242 </indexterm>
243 </listitem>
244 </varlistentry>
245
246 <varlistentry id="npm">
247 <term><command>npm</command></term>
248 <listitem>
249 <para>
250 is the <application>Node.js</application> package manager
251 </para>
252 <indexterm zone="nodejs npm">
253 <primary sortas="b-npm">npm</primary>
254 </indexterm>
255 </listitem>
256 </varlistentry>
257
258 <varlistentry>
259 <term>
260 <filename class="directory">/usr/lib/node_modules/npm/</filename>
261 </term>
262 <listitem>
263 <para>
264 is the installation root for Node.js executables and libraries
265 </para>
266 </listitem>
267 </varlistentry>
268
269 </variablelist>
270
271 </sect2>
272
273</sect1>
Note: See TracBrowser for help on using the repository browser.