Cannot find module 'https://deno.land/std@0.97.0/http/server.ts' or its corresponding type declarations.
import { serve } from "https://deno.land/std@0.97.0/http/server.ts"; const server = serve({ port: 8000 }); console.log("HTTP webserver running. Access it at: http://localhost:8000/"); for await (const request of server) { request.respond({ body: "Hello World\n" }); }