Skip to content

Instantly share code, notes, and snippets.

View Oliver31Batista's full-sized avatar
🚀
Focusing

Oliver Batista Oliver31Batista

🚀
Focusing
  • Universidad Abierta Para Adultos (UAPA)
  • Santiago de los Caballeros
  • 04:59 (UTC -04:00)
View GitHub Profile
@Klerith
Klerith / pasos-node-ts-jest.md
Created August 19, 2023 18:35
Note + TypeScript + Jest = Testing

Pasos para configurar Jest con TypeScript, en Node

Documentación oficial sobre Jest

  1. Instalaciones de desarrollo (super test es útil para probar Express)
npm install -D jest @types/jest ts-jest supertest
@Klerith
Klerith / pasos-node-typescript.md
Last active May 29, 2025 20:47
Configurar proyecto de Node con TypeScript

Pasos para usar Node con TypeScript con Nodemon

Más información - Docs Oficiales

  1. Instalar TypeScript y tipos de Node, como dependencia de desarrollo
npm i -D typescript @types/node
  1. Inicializar el archivo de configuración de TypeScript ( Se puede configurar al gusto)