Deno is Webby - Jim Nielsen’s Blog

submited by
Style Pass
2021-07-13 05:30:06

One thing that resonates with me about the philosophy behind Deno is how “webby” it is. As Ryan points out, they are striving to eschew creating their own APIs and instead imitate standard web APIs. For example fetch is native to Deno whereas Node.js requires a third-party dependency like node-fetch.

But standard browser APIs aren’t the only web feature Deno is planning to imitate. Browser UX patterns for things like permissions are also on their radar. For example, in browsers you get that little pop up “this website would like to use your location”.

According to Ryan, Deno aims to follow the same pattern in asking for permissions. In contrast to Node.js, where a script gets limitless access to your computer when you execute it, Deno requires you pass in command line flags, like --allow-read and --allow-write, in order to specify what scripts can and cannot do.

While today you have to pass in command line flags every single time you run a script, Ryan hints at an upcoming feature of Deno where it’ll execute a script as normal up until it requires a special permission like disk or network access. Then, like a web browser, it will prompt you for the permissions it needs.

Leave a Comment