deno: add Spanish translation (#9194)

pull/1/head
Antonio Acuña 2022-10-20 14:51:22 +02:00 committed by GitHub
parent 399e27024b
commit 0ebb71cc59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 27 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# deno
> Eine sichere JavaScript- und TypeScript-Laufzeit.
> Weitere Informationen: <https://deno.land/>.
> Weitere Informationen: <https://deno.land>.
- Führe eine JavaScript oder TypeScript Datei aus:

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

@ -0,0 +1,24 @@
# deno
> Un entorno de ejecución seguro para JavaScript y TypeScript.
> Más información: <https://deno.land>.
- Ejecuta un archivo JavaScript o TypeScript:
`deno run {{ruta/al/archivo.ts}}`
- Inicia un REPL (intérprete de comandos interactivo):
`deno`
- Ejecuta un archivo con acceso a la red habilitado:
`deno run --allow-net {{ruta/al/archivo.ts}}`
- Ejecuta un archivo desde una URL:
`deno run {{https://deno.land/std/examples/welcome.ts}}`
- Instala un archivo de secuencia de comandos ejecutable desde una URL:
`deno install {{https://deno.land/std/examples/colors.ts}}`

View File

@ -1,7 +1,7 @@
# deno
> Runtime aman untuk JavaScript dan TypeScript.
> Informasi lebih lanjut: <https://deno.land/>.
> Informasi lebih lanjut: <https://deno.land>.
- Menjalankan berkas JavaScript atau TypeScript:

View File

@ -1,7 +1,7 @@
# deno
> A secure runtime for JavaScript and TypeScript.
> More information: <https://deno.land/>.
> More information: <https://deno.land>.
- Run a JavaScript or TypeScript file: