启动一个server服务通常需要以下步骤:
- 使用npm安装express包
npm install express --save
- 编写一个js文件,使用require引入express
const express = require('express');
const app = express();
- 在app对象上配置路由
app.get('/', (req, res) => {
res.send('Hello World!');
});
- 启动server服务
app.listen(3000, () => {
console.log('Server started on port 3000');
});
- 运行js文件
node app.js
以下是两个示例:
示例一:
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('Hello World!');
});
app.listen(3000, () => {
console.log('Server started on port 3000');
});
运行后,在浏览器中访问http://localhost:3000
,可以看到显示"Hello World!"的页面。
示例二:
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('This is the homepage!');
});
app.get('/about', (req, res) => {
res.send('This is the about page!');
});
app.listen(3000, () => {
console.log('Server started on port 3000');
});
运行后,在浏览器中分别访问http://localhost:3000
和http://localhost:3000/about
,可以看到分别显示"This is the homepage!"和"This is the about page!"的页面。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:利用express启动一个server服务的方法 - Python技术站