DEV Community

Discussion on: A new npm is coming

 
vberlier profile image
Valentin Berlier

There's no separate package manager with deno because it automatically pulls dependencies from urls in your code. It's a different approach, there's no need for a package.json and therefore no need for a package manager.

Thread Thread
 
ashishk1331 profile image
Ashish Khare😎

Yeah, time saving and helpful, right?
Oro should include this caching method.

Thread Thread
 
efleurine profile image
Emmanuel

Time saving. Not sure. You still have to find the correct URL just like searching for the correct package on npm

Thread Thread
 
ashishk1331 profile image
Ashish Khare😎

As far as I know, we only need to type
htrps://deno.land/packagename.ts

And that's it.

Thread Thread
 
rsa profile image
Ranieri Althoff

Only for packages in the "standard library" for Deno. Everything else are git URLs.