DEV Community

Discussion on: How is Deno coming along?

Collapse
 
khrome83 profile image
Zane Milakovic • Edited

Pika package, skypack, and unpkg.

Basically those services take NPM package and wrap a module around it. Most of them work today.

Node has module support. If the NPM package has it, it works in deno.

Node specific calls that can’t be emulated in deno, or dependencies that won’t work through the services I said above won’t work. But many things just do.

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt • Edited

Deno also has Node's commonjs and module's compatibility layer.

github.com/denoland/deno/blob/mast...