Skip to content

Instantly share code, notes, and snippets.

View angelcgar's full-sized avatar
🎯
Focusing

Angel Contreras Garcia angelcgar

🎯
Focusing
View GitHub Profile
@Klerith
Klerith / pasos-node-typescript.md
Last active September 19, 2025 05:07
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)
@Klerith
Klerith / instalaciones-database.md
Last active September 2, 2025 20:13
Instalaciones necesarias para el curso de base de datos
@Klerith
Klerith / instalaciones-next.md
Last active September 12, 2025 15:24
Instalaciones recomendadas para el curso de Next.js 13 >
@Klerith
Klerith / auth-layout.component.html
Last active January 2, 2025 02:08
Angular - LoginPage
<div class="limiter">
<div class="container-login100" style="background-image: url('../../../../assets/images/bg-01.jpg');">
<div class="wrap-login100 p-l-55 p-r-55 p-t-65 p-b-54">
<router-outlet />
</div>
</div>
</div>
@Klerith
Klerith / mylabel.css
Created October 20, 2021 21:37
Archivo de CSS de un componente personalizado
.label {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.normal {
font-size: 14px;
}
.h1 {
font-size: 30px;
@Klerith
Klerith / typings.d.ts
Created September 30, 2021 18:34
React Typings para paquete de NPM
declare module '*.css' {
const content: { [className: string]: string };
export default content;
}
declare module "*.jpg" {
const value: any;
export default value;
}