const fastify = require("fastify")();
fastify.get("/", async () => {
return { status: "ok" };
});
fastify.listen(4001, () => {
console.log("server listening at 4001");
});
const fastify = require("fastify")();
fastify.get("/", async () => {
return { status: "ok" };
});
fastify.listen(4001, () => {
console.log("server listening at 4001");
});
本文标题:网站 fastify - 其他笔记
本文链接:https://www.haomeiwen.com/subject/xdegrktx.html
网友评论