What is the Deno class?
What is Deno in Deno.cwd() ? Can someone link me to documentation? Why doesn't the Deno class need to be imported?
3 Replies
The
Deno
class is the only built-in that Deno provides that is Deno-specific. You can read the docs here: https://deno.land/apiYou can see some examples of usage at https://examples.deno.land/
Deno by Example
Deno by example is a collection of annotated examples for how to use Deno, and the various features it provides.
thanks