Hacker News new | ask | show | jobs
by sadturnip 1892 days ago
Have they resolved issues where many third party packages are not available for Deno? Like i don't see things such as MikroORM/Pino/Firebase-Admin on deno.land, and even things like AWS-SDK are out of date.
2 comments

Pro tip: don't import those libs from deno.land/x. The runtime is agnostic to where you're pulling libs from, and that's by design. The AWS SDK v3 for example works great through the Skypack CDN, and you're pulling the canonical one, not simply a port maintained by a third party.
With deno you can import scripts from anywhere on the web you want, my personal favorite is jspm.dev which basically has all npm packages