如何在 Deno 中使用 Express
Express 是一个流行的 Web 框架,以简单、无观点和庞大的中间件生态系统而闻名。
本“如何”指南将向您展示如何使用 Express 和 Deno 创建一个简单的 API。
创建 main.ts
让我们创建 main.ts
touch main.ts
在 main.ts
中,让我们创建一个简单的服务器
// @deno-types="npm:@types/[email protected]"
import express from "npm:[email protected]";
const app = express();
app.get("/", (req, res) => {
res.send("Welcome to the Dinosaur API!");
});
app.listen(8000);
让我们运行这个服务器
deno run -A main.ts
并将我们的浏览器指向 localhost:8000
。您应该看到
Welcome to the Dinosaur API!
添加数据和路由
下一步是添加一些数据。我们将使用从 这篇文章 中找到的恐龙数据。您可以随意 从这里复制。
让我们创建 data.json
touch data.json
并将恐龙数据粘贴进去。
接下来,让我们将该数据导入 main.ts
。让我们在文件顶部添加这一行
import data from "./data.json" assert { type: "json" };
然后,我们可以创建访问该数据的路由。为了简单起见,我们只定义 GET
处理程序,用于 /api/
和 /api/:dinosaur
。在 const app = express();
行之后添加以下内容
app.get("/", (req, res) => {
res.send("Welcome to the Dinosaur API!");
});
app.get("/api", (req, res) => {
res.send(data);
});
app.get("/api/:dinosaur", (req, res) => {
if (req?.params?.dinosaur) {
const found = data.find((item) =>
item.name.toLowerCase() === req.params.dinosaur.toLowerCase()
);
if (found) {
res.send(found);
} else {
res.send("No dinosaurs found.");
}
}
});
app.listen(8000);
让我们使用 deno run -A main.ts
运行服务器,并查看 localhost:8000/api
。您应该看到一个恐龙列表
[
{
"name": "Aardonyx",
"description": "An early stage in the evolution of sauropods."
},
{
"name": "Abelisaurus",
"description": "\"Abel's lizard\" has been reconstructed from a single skull."
},
{
"name": "Abrictosaurus",
"description": "An early relative of Heterodontosaurus."
},
...
当我们转到 localhost:8000/api/aardonyx
时
{
"name": "Aardonyx",
"description": "An early stage in the evolution of sauropods."
}
太棒了!