Diferencia entre revisiones de «Deno»
Ir a la navegación
Ir a la búsqueda
(feat: add SEO) |
(feat: add SEO) |
||
Línea 32: | Línea 32: | ||
* Deno Cheat Sheet by droces : [https://droces.github.io/Deno-Cheat-Sheet/ EN] | * Deno Cheat Sheet by droces : [https://droces.github.io/Deno-Cheat-Sheet/ EN] | ||
* Node -> Deno cheatsheet [https://deno.land/manual/node/cheatsheet EN] | * Node -> Deno cheatsheet [https://deno.land/manual/node/cheatsheet EN] | ||
== General == | |||
== Instalación == | == Instalación == |
Revisión del 16:10 4 ago 2024
Descripción
Última versión estable
La última versión estable es la v1.33.2 que fue lanzada el 4 de mayo 2023.
Recursos
- Sitio oficial: EN
- Blog oficial: EN
- Manual oficial: EN
- Documentación oficial: EN
- Código fuente: EN
- Deno Third Party Modules: EN
Sitios web
Blogs
- Deno: EN
YouTube
- Deno oficial: EN
Cheatsheets
General
Instalación
PowerShell (Windows)
irm https://deno.land/install.ps1 | iex
GNU/Linux
Ubuntu
Ubuntu 22.04 LTS
cd ~ curl -fsSL https://deno.land/x/install/install.sh | sh nano .bashrc
Agregar al final del archivo:
export DENO_INSTALL="/home/proyectosbeta/.deno" export PATH="$DENO_INSTALL/bin:$PATH"
Ahora guardamos (control + o) y luego cerramos el editor (control + x). Volvemos a teclear en la terminal:
source .bashrc
Verificar versión
deno --version
Sale por pantalla:
deno 1.33.1 (release, x86_64-unknown-linux-gnu) v8 11.4.183.1 typescript 5.0.3