838 - Node.js 18

This commit is contained in:
Petr Bokoč 2022-11-13 14:13:55 +01:00
commit 0b29611fee

View file

@ -3,3 +3,18 @@ include::{partialsdir}/entities.adoc[]
[[sect-web-development]]
= Web Development
== Node.js 18
Fedora 37 ships with the latest LTS version of Node.js JavaScript server-side engine, 18.x. The 16.x, and 14.x interpreters will remain available as non-default module streams.
If your applications are not yet ready for this newer version, you can revert to the 16.x series by running the following commands:
[source,bash]
----
dnf remove nodejs
dnf module reset nodejs
dnf module install nodejs:16
----
For more detailed information about Node.js 18, see the link:https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V18.md[upstream Node.js 18 ChangeLog].