From 0f1c66cb6da7b45ff98e6eda060537ea4510a3ea Mon Sep 17 00:00:00 2001 From: JavaScriptDude Date: Thu, 21 May 2020 06:54:09 -0400 Subject: docs: update permissions docs (#5426) --- docs/getting_started/permissions.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'docs/getting_started') diff --git a/docs/getting_started/permissions.md b/docs/getting_started/permissions.md index 867658170..c5880225a 100644 --- a/docs/getting_started/permissions.md +++ b/docs/getting_started/permissions.md @@ -27,12 +27,22 @@ $ deno run --allow-read=/etc https://deno.land/std/examples/cat.ts /etc/passwd `--allow-write` works the same as `--allow-read`. -This example restricts network access by whitelisting the allowed hosts: +### Network access: + +_fetch.ts_: ```ts const result = await fetch("https://deno.land/"); ``` +This is an example on how to whitelist hosts/urls: + +```shell +$ deno run --allow-net=github.com,deno.land fetch.ts +``` + +Allow net calls to any host/url: + ```shell -$ deno run --allow-net=deno.land https://deno.land/std/examples/curl.ts https://deno.land/ +$ deno run --allow-net fetch.ts ``` -- cgit v1.2.3