source: general/genlib/nodejs.xml@ fa559f1

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 fa559f1 was 6aa631b, checked in by Bruce Dubbs <bdubbs@…>, 10 months ago

Tag most of the remaining general libraries.

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