Diferencia entre revisiones de «Deno»
Ir a la navegación
Ir a la búsqueda
(feat: add SEO) |
|||
Línea 1: | Línea 1: | ||
= Descripción = | == Descripción == | ||
== Última versión estable == | === Última versión estable === | ||
La última versión estable es la v1.33.2 que fue lanzada el 4 de mayo 2023. | La última versión estable es la v1.33.2 que fue lanzada el 4 de mayo 2023. | ||
= Recursos = | == Recursos == | ||
* Sitio oficial: [https://deno.land/ EN] | * Sitio oficial: [https://deno.land/ EN] | ||
Línea 14: | Línea 14: | ||
* Deno Third Party Modules: [https://deno.land/x EN] | * Deno Third Party Modules: [https://deno.land/x EN] | ||
== Sitios web == | === Sitios web === | ||
* Awesome Deno: [https://github.com/denolib/awesome-deno EN] | * Awesome Deno: [https://github.com/denolib/awesome-deno EN] | ||
* Deno en Reddit: [https://www.reddit.com/r/Deno/ EN] | * Deno en Reddit: [https://www.reddit.com/r/Deno/ EN] | ||
== Blogs == | === Blogs === | ||
* Deno: [https://dev.to/t/deno EN] | * Deno: [https://dev.to/t/deno EN] | ||
== YouTube == | === YouTube === | ||
* Deno oficial: [https://www.youtube.com/@deno_land EN] | * Deno oficial: [https://www.youtube.com/@deno_land EN] | ||
== Cheatsheets == | === Cheatsheets === | ||
* Deno Cheatsheets by @MichaelCurrin : [https://michaelcurrin.github.io/dev-cheatsheets/cheatsheets/javascript/deno/ EN] | * Deno Cheatsheets by @MichaelCurrin : [https://michaelcurrin.github.io/dev-cheatsheets/cheatsheets/javascript/deno/ EN] | ||
Línea 33: | Línea 33: | ||
* Node -> Deno cheatsheet [https://deno.land/manual/node/cheatsheet EN] | * Node -> Deno cheatsheet [https://deno.land/manual/node/cheatsheet EN] | ||
= Instalación = | == Instalación == | ||
== PowerShell (Windows) == | === PowerShell (Windows) === | ||
irm https://deno.land/install.ps1 | iex | irm https://deno.land/install.ps1 | iex | ||
== GNU/Linux == | === GNU/Linux === | ||
=== Ubuntu === | ==== Ubuntu ==== | ||
==== Ubuntu 22.04 LTS ==== | ===== Ubuntu 22.04 LTS ===== | ||
cd ~ | cd ~ | ||
Línea 58: | Línea 58: | ||
source .bashrc | source .bashrc | ||
===== Verificar versión ===== | ====== Verificar versión ====== | ||
deno --version | deno --version | ||
Línea 68: | Línea 68: | ||
typescript 5.0.3 | typescript 5.0.3 | ||
= Librerías = | == Librerías == | ||
== Data Base == | === Data Base === | ||
* [[cotton]] | * [[cotton]] | ||
== HTTP Frameworks == | === HTTP Frameworks === | ||
* [[oak]] | * [[oak]] | ||
== Utilitarios == | === Utilitarios === | ||
* [[deno-faker]] | * [[deno-faker]] |
Revisión del 16:09 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
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