Hasani
Hasani

Reputation: 3889

How can I use a NPM package within a Deno app?

I want to know how can I use this NPM package inside my Deno application?

Upvotes: 1

Views: 1484

Answers (1)

mfulton26
mfulton26

Reputation: 31234

You should be able to find answers to most, if not all, of your questions in Deno's manual:

  1. Using npm/Node.js code | Manual | Deno

Specifically 5.1 Packages from CDNs | Manual | Deno.

I've used Skypack but I hear other CDNs work well too (e.g. JSPM).

Upvotes: 2

Related Questions