When I import a package in my deno application I get this error:
The remote module "https://deno.land/[email protected]/http/server.ts" has not been cached locally
It seems like its downloading the package every time I'm running the. project, how can I cache the package?
import {serve} from "https://deno.land/[email protected]/http/server.ts"; export const server = serve({port: 3005});
2.1m questions
2.1m answers
60 comments
57.0k users