Diferencia entre revisiones de «Deno»

De Wiki Proyectos Beta
Ir a la navegación Ir a la búsqueda
 
(No se muestran 7 ediciones intermedias del mismo usuario)
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.0 que fue lanzada el 28 de abril 2023.
La última versión estable es la v1.45.5 que fue lanzada el 11 de julio 2024.


= 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 =
== General ==


== PowerShell (Windows) ==
* [[Instalación Deno]]
 
* [[Librerías  Deno]]
irm https://deno.land/install.ps1 | iex
 
== GNU/Linux ==
 
=== Ubuntu ===
 
==== Ubuntu 22.04 ====
 
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
 
= Librerías =
 
== Data Base ==
 
* [[cotton]]
 
== HTTP Frameworks ==
 
* [[oak]]
 
== Utilitarios ==
 
* [[deno-faker]]

Revisión actual - 15:14 4 ago 2024

Descripción

Última versión estable

La última versión estable es la v1.45.5 que fue lanzada el 11 de julio 2024.

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

  • Awesome Deno: EN
  • Deno en Reddit: EN

Blogs

YouTube

  • Deno oficial: EN

Cheatsheets

  • Deno Cheatsheets by @MichaelCurrin : EN
  • Deno Cheat Sheet by droces : EN
  • Node -> Deno cheatsheet EN

General