source: general/genlib/nodejs.xml@ bf800e6

12.0 12.1 ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18
Last change on this file since bf800e6 was 79cf80f5, checked in by Bruce Dubbs <bdubbs@…>, 11 months ago

Update to node-18.17.0.

  • Property mode set to 100644
File size: 7.3 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 "5dd4a23c3e883af3dcab5adc846d91bc">
10 <!ENTITY nodejs-size "39 MB">
11 <!ENTITY nodejs-buildsize "919 MB (add 30 MB for tests)">
12 <!ENTITY nodejs-time "6.7 SBU (add 3.5 SBU for tests: both using parallelism=8 and 8 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
105 </sect2>
106
107 <sect2 role="installation">
108 <title>Installation of Node.js</title>
109
110 <para>
111 Build <application>Node.js</application> by running the following
112 commands:
113 </para>
114
115<screen><userinput>./configure --prefix=/usr \
116 --shared-cares \
117 --shared-libuv \
118 --shared-openssl \
119 --shared-nghttp2 \
120 --shared-zlib \
121 --with-intl=system-icu &amp;&amp;
122make</userinput></screen>
123
124 <para>
125 To test the results, issue: <command>make test-only</command>.
126 Two tests (of 3801 tests), test-net-socket-connect-without-cb and
127 test-tcp-wrap-listen are known to fail.
128<!--
129Failed tests:
130out/Release/node /build/node/node-v18.17.0/test/parallel/test-net-socket-connect-without-cb.js
131out/Release/node - -expose-internals /build/node/node-v18.17.0/test/parallel/test-tcp-wrap-listen.js
132-->
133 </para>
134
135 <para>
136 Now, as the <systemitem class="username">root</systemitem> user:
137 </para>
138
139<screen role="root"><userinput>make install &amp;&amp;
140ln -sf node /usr/share/doc/node-&nodejs-version;</userinput></screen>
141 </sect2>
142
143 <sect2 role="commands">
144 <title>Command Explanations</title>
145
146 <para>
147 <parameter>--with-intl=system-icu</parameter>: use the system version
148 of <application>icu</application>. Other values are
149 <option>full-icu</option> (to build a local, full
150 <application>icu</application> library) and <option>small-icu</option>
151 (to build a local, minimal <application>icu</application> library).
152 </para>
153
154 <para>
155 <parameter>--shared-{cares,libuv,nghttp2,openssl,zlib}</parameter>:
156 use the system installed libraries instead of local copies.
157 </para>
158
159 <para>
160 <option>--without-npm</option>: do not build
161 <application>npm</application> (use if you'd like to build a separate
162 <application>npm</application> later).
163 </para>
164
165 <para>
166 <option>--shared-http-parser</option>: use the system
167 installed library instead of a local copy.
168 </para>
169
170 </sect2>
171
172 <sect2 role="content">
173 <title>Contents</title>
174
175 <segmentedlist>
176 <segtitle>Installed Programs</segtitle>
177 <segtitle>Installed Library</segtitle>
178 <segtitle>Installed Directories</segtitle>
179
180 <seglistitem>
181 <seg>
182 corepack, node, npm, and npx
183 </seg>
184 <seg>
185 None
186 </seg>
187 <seg>
188 /usr/include/node,
189 /usr/lib/node_modules/{corepack,npm},
190 /usr/share/doc/{node,node-&nodejs-version;}, and
191 /usr/share/systemtap/tapset
192 </seg>
193 </seglistitem>
194 </segmentedlist>
195
196 <variablelist>
197 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
198 <?dbfo list-presentation="list"?>
199 <?dbhtml list-presentation="table"?>
200
201 <varlistentry id="corepack">
202 <term><command>corepack</command></term>
203 <listitem>
204 <para>
205 is an experimental tool to help with managing versions of package
206 managers.
207 </para>
208 <indexterm zone="nodejs corepack">
209 <primary sortas="b-corepack">corepack</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
214 <varlistentry id="node">
215 <term><command>node</command></term>
216 <listitem>
217 <para>
218 is the server-side JavaScript runtime
219 </para>
220 <indexterm zone="nodejs node">
221 <primary sortas="b-node">node</primary>
222 </indexterm>
223 </listitem>
224 </varlistentry>
225
226 <varlistentry id="npm">
227 <term><command>npm</command></term>
228 <listitem>
229 <para>
230 is the <application>Node.js</application> package manager
231 </para>
232 <indexterm zone="nodejs npm">
233 <primary sortas="b-npm">npm</primary>
234 </indexterm>
235 </listitem>
236 </varlistentry>
237
238 <varlistentry>
239 <term>
240 <filename class="directory">/usr/lib/node_modules/npm/</filename>
241 </term>
242 <listitem>
243 <para>
244 is the installation root for Node.js executables and libraries
245 </para>
246 </listitem>
247 </varlistentry>
248
249 </variablelist>
250
251 </sect2>
252
253</sect1>
Note: See TracBrowser for help on using the repository browser.