Slide 5
Slide 5 text
5 / 11
How Deno attempts to
correct design mistakes
in Node.
● ES modules are the one and only module system
○ HTTP URLs are used to link to third party code
○ Deno has the ability to fetch resources itself, so it is its own package manager.
● Deno is secure by default
○ Users must give extra permission to access the disk, network, or otherwise do
privileged operations.
● Deno maintains browser compatibility
○ The subset of Deno programs which are written completely in JavaScript and do
not use the global Deno object should also run in a modern web browser without
change.