本文介绍在Ubuntu/Debian/Linux Mint操作系统上安装Node.js 12(Current)的方法,要说明的是,Node.js 12不是长期支持的LTS版本,但是你可以自由的升级到新的版本。
一、更新系统和添加Node.js 12 APT存储库 1、更新系统 先更新系统,以确保我们没有依赖性问题: sudo apt update sudo apt -y upgrade 2、添加Node.js 12 APT存储库 Node.js的所有版本都可以从官方APT存储库中安装,但是需要手动添加到你的系统中: sudo apt update sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - 注:以上是针对Node.js 12版本的,其它版本请参考在Ubuntu 18.04系统中安装Node.js 10的方法。
二、在Ubuntu/Debian/Linux Mint上安装Node.js 12 已添加Node.js存储库,下一步是在Ubuntu/Debian/Linux Mint上安装Node.js 12,运行以下命令是安装所需的全部组件: sudo apt -y install nodejs 也可以安装用于构建本机插件的开发工具: sudo apt -y install gcc g++ make 通过检查安装的版本来确认Node.js 12的安装是否成功,具体版本如下: $ node --version v12.0.0 $ npm --version 6.9.0
三、测试Node.js 12 创建一个示例Node.js 12 Web服务器,它以“Hello, World!”响应: $ mkdir ~/projects $ cd ~/projects 使用以下内容创建名为hello-world.js的新文件: const http = require('http'); const hostname = '127.0.0.1'; const port = 3000; const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello, World!\n'); }); server.listen(port, hostname, () => { console.log(`Server running at http://${hostname}:${port}/`); }); 保存文件并在终端中输入以下命令: $ node hello-world.js 终端中的这样的输出表明Node.js服务器正在运行: Server running at http://127.0.0.1:3000 如果你在Web浏览器上打开链接,则应显示“Hello, World!”字符串:
相关主题 |