Skip to content

Instantly share code, notes, and snippets.

View jlcarrascof's full-sized avatar

Javier Jesus Martínez Fariñas jlcarrascof

View GitHub Profile
@cesarco
cesarco / pasos-node-ts-jest.md
Last active September 4, 2025 15:24 — forked from Klerith/pasos-node-ts-jest.md
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
@codigoconjuan
codigoconjuan / guitarras.js
Last active November 1, 2025 23:29
Proyecto Guitarras con Vue.js y Composition API
export const db = [
{
id: 1,
nombre: 'Lukather',
imagen: 'guitarra_01',
descripcion: 'Morbi ornare augue nisl, vel elementum dui mollis vel. Curabitur non ex id eros fermentum hendrerit.',
precio: 299,
},
{
id: 2,