进阶学习
Node 进阶版
安装
npm init -y
npm install express
使用例子 1
// 导入所需模块
const express = require('express');
const app = express();
// 定义端口
const PORT = 8080;
// 路由 - 返回简单的文本数据
app.get('/', (req, res) => {
res.send('欢迎来到 Node.js API 服务器!');
});
// 路由 - 返回 JSON 格式的用户数据
app.get('/api/users', (req, res) => {
const users = [
{ id: 1, name: 'Alice', age: 25 },
{ id: 2, name: 'Bob', age: 30 },
{ id: 3, name: 'Charlie', age: 35 },
];
res.json(users);
});
// 启动服务器
app.listen(PORT, () => {
console.log(`服务器已启动,访问地址:http://localhost:${PORT}`);
});