如何从浏览器运行 ExpressJS 服务器?
Express 是用于创建服务器的节点模块,用于在我们的服务器上接受获取请求。我们可以使用以下 5 个简单步骤从浏览器运行 ExpressJS 服务器:
第 1 步:通过以下命令将 Express 本地安装到您的系统中:
npm install express
第 2 步:在终端中使用以下命令检查 express 服务器的版本:
npm ls express
第 3 步:在任意项目目录中创建一个名为index.js的文件。
第 4 步:在index.js文件中写下以下代码。
index.js
// Requiring express.js
const express = require('express')
// Changing the module to object to use its inbuilt functions
const app = express()
// Port number to run the port
const port_no = 5555
// Get request to send the data to the server
app.get('/' , (req,res) => {
res.send('hey geeks!')
})
// Server Setup
app.listen(port_no, () => {
console.log('port running atport number : 5555')
})
第 5 步:使用以下步骤运行应用程序。
使用以下命令运行index.js文件:
node index.js
输出:您将在控制台屏幕上看到以下输出。
现在转到您的浏览器并转到http://localhost:5555/打开服务器: