Diferencia entre revisiones de «NodeJS»

De Wiki Proyectos Beta
Ir a la navegación Ir a la búsqueda
([feat] Add information about NodeJS)
([feat] Add information about NodeJS)
Línea 19: Línea 19:
=== Obtener imagen ===
=== Obtener imagen ===


  docker pull node:lts-alpine3.16
  docker pull node:lts-alpine


=== Interactuando con PHP ===
=== Interactuando con PHP ===


  docker run -it --rm node:lts-alpine3.16
  docker run -it --rm node:lts-alpine


Ejecutamos:
Ejecutamos:

Revisión del 13:10 13 ago 2022

Descripción

Recursos

  • Sitio oficial EN
  • Documentación oficial: EN
  • Repositorio oficial EN
  • Sitio oficial de imágenes docker: EN

Herramientas

Online

  • Tabla de versiones de NodeJS con respecto a las especificaciones de ECMAScript: EN

Instalar

Usando docker

Obtener imagen

docker pull node:lts-alpine

Interactuando con PHP

docker run -it --rm node:lts-alpine

Ejecutamos:

console.log("hola");

Salida:

 hola