ubuntu 安装nodejs 12

2021/4/7 7:06:22

本文主要是介绍ubuntu 安装nodejs 12,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

尽管node js 已经过时了, 但是因为这些哪些原因, 不得已还是要用的

安装方法

1. 更新系统

sudo apt update
sudo apt -u upgrade

2. 添加nodejs apt仓库

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 -

3. 安装nodejs12

sudo apt -y install nodejs
sudo apt install gcc g++ make

4. 验证

命令行版本确认

$ node --version
v12.10.0

$ npm --version
6.10.3

代码运行验证, 测试代码 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

打开浏览器就可以看到“hello world!”

refers:

https://computingforgeeks.com/how-to-install-nodejs-on-ubuntu-debian-linux-mint/



这篇关于ubuntu 安装nodejs 12的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程