DEV Community

Discussion on: From Node to Deno

Collapse
 
wilsonuponsea profile image
Jason Wilson πŸ‡¨πŸ‡­

What happens if one of your deps loses their URL or moves things around without warning? Is there any sort of central repository or cache?
I think Iβ€˜ve seen that the import map should be used to avoid having to update an import in a bunch of files so I suppose it’s not horrible to have to fix. Just seems like a risk.

Collapse
 
dels07 profile image
Deli Soetiawan

Deno will cache your deps in first run so it's available offline, similar to golang did before go mod

Collapse
 
uzitech profile image
Tony Brix • Edited

Is there anything preventing a left-pad situation?