Skip to content

Instantly share code, notes, and snippets.

View TikoCisneros's full-sized avatar
:electron:
Enjoying the little things in life

Luis Alberto Cisneros Gómez TikoCisneros

:electron:
Enjoying the little things in life
  • Imbabura, Ibarra, Ecuador
View GitHub Profile
@TikoCisneros
TikoCisneros / pasos-node-ts-jest.md
Last active March 14, 2024 03:09 — 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 @types/supertest
@TikoCisneros
TikoCisneros / pasos-node-typescript.md
Last active March 11, 2024 14:37 — forked from Klerith/pasos-node-typescript.md
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)
@TikoCisneros
TikoCisneros / nvmCommands.js
Created January 20, 2024 21:11 — forked from chranderson/nvmCommands.js
Useful NVM commands
// check version
node -v || node --version
// list locally installed versions of node
nvm ls
// list remove available versions of node
nvm ls-remote
// install specific version of node
@TikoCisneros
TikoCisneros / 01-initial-setup.sh
Created November 30, 2023 03:23 — forked from pixelmattersdev/01-initial-setup.sh
How to set up a Front-End project with Vite, React, and TypeScript
npm init vite@latest demo-project -- --template react-ts