我尝试使用yum在CentOS 7上安装Node.js v12
Node.js v12发布了。
Node.js v12(计划采用长期支持)已发布。
v8引擎升级,支持TLS1.3等,看起来有很多变化。
详细内容请参阅发布说明(英语):
https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V12.md#12.0.0
安装 Node.js v12
暂时先添加存储库。
# yum install https://rpm.nodesource.com/pub_12.x/el/7/x86_64/nodesource-release-el7-1.noarch.rpm
为了确认,使用yum工具检查nodejs的哪个版本是适用的。
# yum info nodejs
Installed Packages
Name : nodejs
Arch : x86_64
Epoch : 2
Version : 12.18.0 <-ココが重要
Release : 1nodesource
Size : 58 M
Repo : installed
From repo : nodesource
Summary : JavaScript runtime
URL : http://nodejs.org
License : MIT and ASL 2.0 and ISC and BSD
Description : Node.js is a platform built on Chrome's JavaScript runtime
: for easily building fast, scalable network applications.
: Node.js uses an event-driven, non-blocking I/O model that
: makes it lightweight and efficient, perfect for data-intensive
: real-time applications that run across distributed devices.
既然没有问题,我就安装它。
# yum -y install nodejs
最后,确认版本并结束。
# node --version
v12.0.0
尽情享受吧!