DEV Community

Discussion on: A new npm is coming

Collapse
 
jakobrosenberg profile image
Jakob Rosenberg

Deno is a rival to node. Oro is a rival to npm, pnpm and yarn

Collapse
 
ashishk1331 profile image
Ashish Khare😎

Okay, so deno is a engine to run js not the package manager. Got it! I thought deno was doing everything including package managing.

Thread Thread
 
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.