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:
parent
75ef6c5945
commit
528c3d8699
1 changed files with 24 additions and 0 deletions
24
pages.fr/common/deno.md
Normal file
24
pages.fr/common/deno.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue