如何在LinuxMint 19/18上安装最新的Nodejs

时间:2019-05-29 14:47:56  来源:igfitidea点击:

Node.js是一个基于Chrome V8 JavaScript引擎的平台。
可以使用Nodejs轻松构建快速、可扩展的网络应用程序。
最新版本node.js ppa由其官方网站维护。

步骤1 -配置Node.js PPA

首先,我们需要Nodejs官方网站提供node.js PPA。
我们还需要安装python软件属性包(如果还没有安装的话)。
我们可以选择安装最新的Node.js版本或LTS版本。

安装最新版本

sudo apt-get install curl python-software-properties
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -

安装稳定版本

sudo apt-get install curl python-software-properties
curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -

第2步-在Linux Mint上安装Node.js

NPM将与node.js一起安装。
这个命令还将在系统上安装许多其他依赖包。

sudo apt-get install nodejs

步骤3 -检查Node.js版本

完成Node.js的安装过程后。
检查并验证安装的版本。

$ node -v 

v14.4.0

$ npm -v 

6.14.5

步骤4 -创建一个演示Web服务器(可选)

这是一个可选步骤。

为了测试node.js,我们创建一个web服务器。

创建一个文件 demo_server.js

# vim demo_server.js

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Welcome Node.js');
}).listen(3000, "127.0.0.1");
console.log('Server running at http://127.0.0.1:3000/');

现在使用命令启动web服务器。

# node --inspect demo_server.js

Debugger listening on ws://127.0.0.1:9229/9e0c7b4a-2ffe-48df-a4b0-b4635dcd9359
For help, see: https://nodejs.org/en/docs/inspector
Server running at http://127.0.0.1:3000/

Web服务器已经在端口3000上启动。
现在可以在浏览器中访问 http://127.0.0.1:3000了。