DEV Community

Discussion on: Guide To Porting Node Modules To Deno

Collapse
 
garronej profile image
Garrone Joseph

Note that Denoify is now much more capable than when this article was written.

  • You can now use .deno.ts files to write a deno implementation of some of your files (à la React Native)
  • You can write custom import statement replacer that let you leverage CDN like skynet (ext Pika) and JSPM.
  • Widely used modules like react, graphql or RxJS are supported out of the box. They resolve to the right version and with type annotations!

As of today the main issue is that "https" "net" or "stream" are still missing from the node compatibility layer but these will land eventually.

repo