deno, flutter: add German translation (#8582)

This commit is contained in:
Leo Kling
2022-10-06 06:16:50 +02:00
committed by GitHub
parent c2f82c0afc
commit ff7b2eb1ea
2 changed files with 56 additions and 0 deletions

24
pages.de/common/deno.md Normal file
View File

@@ -0,0 +1,24 @@
# deno
> Eine sichere JavaScript- und TypeScript-Laufzeit.
> Weitere Informationen: <https://deno.land/>.
- Führe eine JavaScript oder TypeScript Datei aus:
`deno run {{pfad/zu/datei.ts}}`
- Starte ein REPL (interaktive Konsole):
`deno`
- Führe eine Datei mit Netzwerkzugriff aus:
`deno run --allow-net {{pfad/zu/datei.ts}}`
- Führe eine Datei von einer URL aus:
`deno run {{https://deno.land/std/examples/welcome.ts}}`
- Installiere ein ausführbares Script von einer URL:
`deno install {{https://deno.land/std/examples/colors.ts}}`