网站 fastify - 其他笔记
2020-08-06 本文已影响0人
自走炮
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");
});