June 2025
Intermediate to advanced
837 pages
24h 50m
English
Unlike Node.js, Deno doesn’t know the concept of modules. Instead, Deno offers you a wide range of built-ins, that is, built-in features you can use instead of modules. Deno defines some global variables and functions such as the console object or the setTimeout function. These are available globally, so you don’t need to import them, and you can use them without any other additions.
But things are different with regard to more specialized functionalities such as reading and writing files. The functions required for this are located in the Deno namespace. This is also available globally and works without a separate import.
As an example of a file system operation, you’ll now implement ...
Read now
Unlock full access