CinTutuDev / pipesApp

🅰Proyecto con Angular16: Pipes y transformación visual de la data(Uppercase, Lowercase, TitleCase... )

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hackerpipesApp

🅰Proyecto con Angular16: Pipes y transformación visual de la data(Uppercase, Lowercase, TitleCase... ) Proyecto hecho con: Angular CLI version 16.1.3.

🐦Servidor

Ejecutar ng serve ó ng s -opara un servidor de desarrollo. Navegue a `http://localhost:4200/

🎮 Crear Componente y Módulos por comandos

  • Módulo:
    ng g m shared
    
  • Componente
    ng g c shared/pages/aboutPage
    
  • Componente sin archivo de prueba y sin hoja de stilos
    ng g c shared/pages/aboutPage --inline-style --skip-tests
    

🛠 Build

Para construir el proyecto ng build to build the project. Se almacenarán en la carpeta dist/ directory.

URL Importantes

Diseño: Bootstrap

PrimeNG: Pipe

API List: Pipe

PDF atajos: [FernendoH]angular-cheat-sheet.pdf

🕹 Intalación de PrimeNG

  • Ir a
https://primeng.org/installation
  • Intalamos en terminal:
    npm install primeng
    npm install primeicons
    npm install @angular/animations --save
    
  • Ir a angular.json:
 "styles": [
              "src/styles.scss",
              "node_modules/primeicons/primeicons.css",
              "node_modules/primeng/resources/themes/lara-light-purple/theme.css",
              "node_modules/primeng/resources/primeng.min.css"
            ],
  • Importamos en app.component.ts
import { PrimeNGConfig } from 'primeng/api';

About

🅰Proyecto con Angular16: Pipes y transformación visual de la data(Uppercase, Lowercase, TitleCase... )


Languages

Language:TypeScript 63.8%Language:HTML 29.4%Language:SCSS 6.8%