Deno Support
It would be cool if we could use this library in Deno. :smile:
yeah, that'd be neat! have you tried running it in compatibility mode?
I don't think it'll works using the node compatibility mode since the tls module is not yet implemented by the deno devs
ah, bummer. i love the idea, though. how would we implement it? i thought of using an import map to point the node built-ins to a separate file that re-exports deno built-ins, but i'm not sure if that's the right approach.
Deno has built-in modules to do the job such as tls
But it'll be hard to maintain node and deno at the same time..
Maybe if we could create adapters to make things easier to automate the deno version would be great.
yeah, that was essentially my idea; the import map would point built-ins like tls to e.g. deno.ts where we would re-export a function that calls into deno's stdlib.
Hello Denoers! I'm advancing deno support in https://github.com/lucsoft/emailjs with better typing and all that fancy stuff. Currently it requires node api but im hoping to go full Web Standards + Deno TLS/Socket stuff