source: general/genlib/nodejs.xml@ 2658a0d

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

Tag most of the remaining general libraries.

  • Property mode set to 100644
File size: 7.4 KB
RevLine 
[4464d405]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
[2d4d59a]7 <!ENTITY nodejs-download-http "https://nodejs.org/dist/v&nodejs-version;/node-v&nodejs-version;.tar.xz">
[4464d405]8 <!ENTITY nodejs-download-ftp " ">
[7aedf14]9 <!ENTITY nodejs-md5sum "cfadecca2649bb74daba89d60fbd02e5">
[111bb21]10 <!ENTITY nodejs-size "39 MB">
[7aedf14]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)">
[4464d405]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
[8558044]31 <application>Chrome's</application> V8 JavaScript engine.
[4464d405]32 </para>
33
[6aa631b]34 &lfs120_checked;
[4464d405]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>
[25ef5f7]69
[dda8ca6]70<!--
[b01309e7]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>
[dda8ca6]80-->
[25ef5f7]81
[4464d405]82 <bridgehead renderas="sect3">Node.js Dependencies</bridgehead>
83
84 <bridgehead renderas="sect4">Required</bridgehead>
85 <para role="required">
[8558044]86 <xref linkend="which"/>
[4464d405]87 </para>
88
89 <bridgehead renderas="sect4">Recommended</bridgehead>
90 <para role="recommended">
[bbaebd0]91 <xref linkend="c-ares"/>,
[52e582c9]92 <xref linkend="icu"/>,
93 <xref linkend="libuv"/>, and
94 <xref linkend="nghttp2"/>
[4464d405]95 </para>
96
97 <bridgehead renderas="sect4">Optional</bridgehead>
98 <para role="optional">
[ee1676a]99 <ulink url="https://github.com/nodejs/http-parser">http-parser</ulink> and
[f02583f]100 <ulink url="https://www.npmjs.com/">npm</ulink> (an internal copy of
101 <command>npm</command> will be installed if not present)
[4464d405]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
[de66d05]115<screen><userinput>./configure --prefix=/usr \
[ccec040c]116 --shared-cares \
117 --shared-libuv \
118 --shared-openssl \
119 --shared-nghttp2 \
120 --shared-zlib \
121 --with-intl=system-icu &amp;&amp;
[4464d405]122make</userinput></screen>
123
[d56e7df]124 <para>
[ee1676a]125 To test the results, issue: <command>make test-only</command>.
[7aedf14]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.
[9bea06a]130<!--
131Failed tests:
[79cf80f5]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
[9bea06a]134-->
[6914a417]135 </para>
[4464d405]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
[d56e7df]148 <para>
[6cbbb2d6]149 <parameter>--with-intl=system-icu</parameter>: use the system version
[d56e7df]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>
[4464d405]155
[d56e7df]156 <para>
[087639a]157 <parameter>--shared-{cares,libuv,nghttp2,openssl,zlib}</parameter>:
[d56e7df]158 use the system installed libraries instead of local copies.
159 </para>
[4464d405]160
[d56e7df]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>
[4464d405]166
[d56e7df]167 <para>
168 <option>--shared-http-parser</option>: use the system
169 installed library instead of a local copy.
170 </para>
[4464d405]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>
[38277fd]184 corepack, node, npm, and npx
[4464d405]185 </seg>
186 <seg>
187 None
188 </seg>
189 <seg>
[6a43232]190 /usr/include/node,
[c2051dbd]191 /usr/lib/node_modules/{corepack,npm},
[ee1676a]192 /usr/share/doc/{node,node-&nodejs-version;}, and
[6a43232]193 /usr/share/systemtap/tapset
[4464d405]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
[38277fd]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
[4464d405]216 <varlistentry id="node">
217 <term><command>node</command></term>
218 <listitem>
219 <para>
[4c24eb0a]220 is the server-side JavaScript runtime
[4464d405]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>
[4c24eb0a]232 is the <application>Node.js</application> package manager
[4464d405]233 </para>
234 <indexterm zone="nodejs npm">
235 <primary sortas="b-npm">npm</primary>
236 </indexterm>
237 </listitem>
238 </varlistentry>
239
240 <varlistentry>
[4c24eb0a]241 <term>
242 <filename class="directory">/usr/lib/node_modules/npm/</filename>
243 </term>
[4464d405]244 <listitem>
[d56e7df]245 <para>
[4c24eb0a]246 is the installation root for Node.js executables and libraries
[d56e7df]247 </para>
[4464d405]248 </listitem>
249 </varlistentry>
250
251 </variablelist>
252
253 </sect2>
254
255</sect1>
Note: See TracBrowser for help on using the repository browser.