Modules & Dependencies
Reloading Modules
# Reload everything
deno run --reload my_module.ts
# Reload a specific module
deno run --reload=jsr:@std/fs my_module.tsThird party packages
Directly in the .ts files
.ts filesIn deno.json
deno.jsonWith deno add
deno addLast updated