我正在尝试使用Deno,并且我找到了一个名为Attain的脚本,它看起来与 Express 非常相似。
快递片断:
const express = require('express')
const app = express()
app.get('/', function (req, res) {
res.send('Hello World')
})
app.listen(3000)
获取片段:
import { App, Router } from "https://deno.land/x/attain/mod.ts";
const app = new App();
app.get('/', (req, res) => {
res.send("Hey there!");
});
app.listen({port: 8080});
开始使用它作为中间件框架看起来很有希望,但我正在寻找经验丰富的意见,关于 Attain 是否包含与 Express 相同的内部功能,以及它们之间是否存在差异?