如何在Ubuntu 18.04上安装/卸载NodeJS

NodeJS是一个JavaScript框架,它可以让你轻松构建快速的网络应用程序。在这个指南中,我们会深入探讨,看看你如何在Ubuntu 18.04上安装NodeJS。

第一步:将NodeJS PPA添加到Ubuntu 18.04中。

首先,使用以下命令将NodeJS PPA添加到您的系统中。

sudo apt-get install software-properties-common
Sudo Apt Install Software Properties Common
curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
Add Current NodeJS Release

第二步:在Ubuntu上安装NodeJS。

成功添加NodeJS PPA后,现在可以使用以下命令安装NodeJS。

sudo apt-get install nodejs
Install NodeJs on Ubuntu 18.04

第三步:验证NodeJS和NPM的版本

在成功安装NodeJS之后,您可以使用以下简单命令测试NodeJS的版本。

node -v
testing the version of NodeJS in Ubuntu 18.04
npm -v
Testing the version of NPM

步骤4:创建一个Web服务器演示

这是一个可选步骤,你可以用它来测试 NodeJS 是否按照预期工作。我们将创建一个网页服务器,显示文本“恭喜!Node.JS 已成功安装!”让我们创建一个 NodeJS 文件并将其命名为 nodeapp.js。

vim nodeapp.js

请添加以下内容

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Congratulations! node.JS has successfully been installed !\n');
}).listen(3000, " server-ip);
console.log('Server running at https://server-ip:3000/');

保存并退出文本编辑器,使用以下命令启动应用程序。

node nodeapp.js
Running Node Js Application
ufw allow 3000/tcp
ufw reload

现在打开你的浏览器,并按照显示的方式浏览服务器的地址。

https://server-ip:3000
Success Nodejs Has Successfully Been Instaled

从 Ubuntu 卸载 NodeJS

如果你希望从你的Ubuntu系统卸载NodeJS,请运行下面的命令。

sudo apt-get remove nodejs

该命令将删除软件包但保留配置文件。要同时删除软件包和配置文件,请运行:

sudo apt-get purge nodejs

作为最后一步,你可以运行下面的命令来删除任何未使用的文件并释放磁盘空间。

sudo apt-get autoremove

太好了!我们已经成功安装和测试了NodeJS的安装。我们还学会了如何在Ubuntu上卸载NodeJS并清理空间。

发表回复 0

Your email address will not be published. Required fields are marked *


广告
将在 10 秒后关闭
bannerAds