1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 03:35:41 +02:00

deno: add French translation (#12427)

* deno: add French translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Druva 2024-03-01 22:28:06 +05:30 committed by GitHub
parent 75ef6c5945
commit 528c3d8699
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

24
pages.fr/common/deno.md Normal file
View file

@ -0,0 +1,24 @@
# deno
> Un environnement d’exécution sécurisé pour JavaScript et TypeScript.
> Plus d'information : <https://deno.land>.
- 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}}`