下面是详细的攻略:
在终端中输入以下命令:
sudo apt update
在终端中输入以下命令:
sudo apt install nodejs
安装完成后,可以通过以下命令检查 Node.js 是否安装成功:
node -v
可以通过以下代码,在本地搭建一个基础的 HTTP 服务器:
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!');
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});
将以上代码保存为 server.js 文件,然后在终端中输入以下命令即可启动服务器:
node server.js
在终端中输入以下命令:
sudo apt install npm
安装完成后,可以通过以下命令检查 npm 是否安装成功:
npm -v
可以通过以下命令,安装 Express.js 框架:
npm install express
安装完成后,在项目根目录下创建一个名为 app.js 的文件,输入以下代码:
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => {
res.send('Hello World!')
})
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`)
})
在终端中输入以下命令即可启动服务器:
node app.js
Node.js 和 npm 的安装方式在上面已经讲解过了,在这里不再赘述。
在终端中输入以下命令,安装 electron:
npm install -g electron
安装完成后,可以通过以下命令检查 electron 是否安装成功:
electron -v
可以通过以下命令,在本地创建一个 Electron 应用:
electron init myapp
接着,进入应用目录
cd myapp
然后,再输入以下命令,启动 Electron 应用:
npm start
在以上示例中,我们讲解了 Node.js 和 Electron 在 Ubuntu 下的快速安装过程,并且给出了几个示例代码,希望能够对您有所帮助。
本文链接:http://task.lmcjl.com/news/7016.html