From 528c3d8699f05109f8a14ea8f15b5b3494d3c030 Mon Sep 17 00:00:00 2001 From: Druva Date: Fri, 1 Mar 2024 22:28:06 +0530 Subject: [PATCH] deno: add French translation (#12427) * deno: add French translation --------- Co-authored-by: K.B.Dharun Krishna --- pages.fr/common/deno.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages.fr/common/deno.md diff --git a/pages.fr/common/deno.md b/pages.fr/common/deno.md new file mode 100644 index 0000000000..63df510181 --- /dev/null +++ b/pages.fr/common/deno.md @@ -0,0 +1,24 @@ +# deno + +> Un environnement d’exécution sécurisé pour JavaScript et TypeScript. +> Plus d'information : . + +- Exécute un fichier JavaScript ou TypeScript : + +`deno run {{chemin/du/fichier.ts}}` + +- Démarre un REPL (shell interactif) : + +`deno` + +- Exécute un fichier avec l'accès au réseau activé : + +`deno run --allow-net {{chemin/du/fichier.ts}}` + +- Exécute un fichier à partir d’une URL : + +`deno run {{https://deno.land/std/examples/welcome.ts}}` + +- Installe un script exécutable à partir d’une URL : + +`deno install {{https://deno.land/std/examples/colors.ts}}`