#Warning Implicitly using latest version (0.178.0) for...

4 messages · Page 1 of 1 (latest)

thorn bison
#

Hello - Deno newb here.

When running deno task start I get "Warning Implicitly using latest version (0.178.0) for https://deno.land/std/node/events.ts"
The error below is then thrown which makes sense because https://deno.land/[email protected]/node/events.ts is a 404.
error: Uncaught (in promise) TypeError: Module not found "https://deno.land/std/node/events.ts". at https://raw.githubusercontent.com/Zhomart/dex/930253915093e1e08d48ec0409b4aee800d8bd0c/lib-dyn/deps.ts:7:24 await import(entrypoint); ^ at async dev (https://deno.land/x/[email protected]/src/dev/mod.ts:187:3)
How can I resolve this? Thanks!

vivid scaffold
#

Where are you getting this error? std/node was removed and added to deno core. You should now be using node:events.

thorn bison