Skip to main content
Module

x/fastro/benchmarks/fastify.js

Fast and simple web application framework for deno
Go to Latest
File
const fastify = require("fastify")();
const port = 3002;fastify.get("/", async (request, reply) => { return "Hello";});
const start = async () => { await fastify.listen(port); console.log("fastify listening on", port);};start();