Found 1 Articles for Deno

How to Add a Third Party Library in Deno.js?

AmitDiwan
Updated on 13-Feb-2023 17:41:03

224 Views

To add a third-party library in Deno, we need to import the library from its URL. We can use the "import" statement followed by the URL of the library. It is also possible to use a local file path instead of a URL. The library can then be used in our code by referencing its exported functions or variables. Let us first understand what is Deno.js − What is Deno.js? Deno is a new JavaScript/TypeScript runtime built with V8 JavaScript engine. It is built on top of Rust programming language and uses the Tokio library for asynchronous I/O. Unlike ... Read More

1
Advertisements