2024-03-01 16:58:06 +00:00
|
|
|
|
# deno
|
|
|
|
|
|
|
|
|
|
> Un environnement d’exécution sécurisé pour JavaScript et TypeScript.
|
2024-05-05 20:02:35 +01:00
|
|
|
|
> Plus d'informations : <https://deno.land>.
|
2024-03-01 16:58:06 +00:00
|
|
|
|
|
|
|
|
|
- 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}}`
|