Permissions
Explore how Deno manages permissions to secure runtime access. Understand the types of permissions available, their purpose, and how to grant or restrict access to network, environment variables, and filesystem during script execution to keep your applications safe.
We'll cover the following...
We'll cover the following...
Previously, we came across Deno’s permissions for the first time when we wrote our first HTTP server. We had to give our script permission to access the network at the time. Since then, we’ve used them a few times without knowing too much about how they work.
In this lesson, we’ll explore how permissions work. We’ll learn ...