Aplicaciones a gran escala con Vue 3 y TypeScript
Aplicaciones a gran escala con Vue 3 y TypeScript
Cree interfaces de usuario grandes y escalables que aprovechen el aislamiento de componentes, la internacionalización, la localización, una tienda Vuex modular, bibliotecas de componentes personalizados, código de cliente API que puede cambiar fácilmente entre datos simulados y datos en vivo y más.
Sobre este libro
Cree interfaces de usuario de Vue 3 grandes y escalables con una gran base de código organizado que sea fácil de expandir y mantener utilizando técnicas como:
- Desarrollo de componentes de interfaz de usuario de forma aislada mediante un cliente API que puede proporcionar fácilmente datos en vivo o datos simulados.
- Crear librerías de componentes personalizadas.
- Un store Vuex modular organizado en dominios de aplicación.
- Internacionalización y localización para traducción de idiomas y formato de números / fechas de acuerdo con una cultura específica.
- Verificación de tipos de TypeScript en tiempo de desarrollo para disminuir errores o errores en tiempo de ejecución.
- Convenciones de nomenclatura de código, archivos y estructura de directorios.
- Pruebas unitarias para modelos y componentes.
- Y más.
Paquetes
The Book
With this package you get 1 copy of the book, including any of its future updates.
PDF
EPUB
WEB
Español
The Book: Team license
With this package you get 3 copies of the book, including any of its future updates.
PDF
EPUB
WEB
Español
The Book: Enterprise license
With this package you get 20 copies of the book, including any of its future updates.
PDF
EPUB
WEB
Español
Bundles that include this book
Tabla de contenido
- APLICACIONES A GRAN ESCALA CON VUE3 Y TYPESCRIPT
-
Prefacio
- Agradecimientos
- Audiencia
- Objetivo
- Convenciones
- Nota del traductor
- Prerrequisitos
- Código del libro
-
Capítulo 1 - Preparando el proyecto con Vue-CLI
- Asistente de creación de proyecto
- Resumen del capítulo 1
-
Capítulo 2 - Tu primer componente
- La lista de elementos
- Requisitos del componente ItemsList
- Código del componente ItemsList
- Vista Home
-
Actualización de App.vue
- Resumen del capítulo 2
-
Capítulo 3 - Interfaces del modelo de datos
- Carpeta de modelos
- Interface ItemInterface
- Componente ItemsList
- Vista Home
- Resumen del capítulo 3
-
Capítulo 4 - Añadiendo eventos al componente Items
- Componente ItemsList
- Resumen del capítulo 4
-
Capítulo 5 - Introducción a las pruebas unitarias mientras refactorizamos un poco
- ItemComponent
- Pruebas unitarias para ItemComponent
- Componente ItemsList
- Actualizaciones a Home.vue
- Resumen del capítulo 5
-
Capítulo 6 - Presentando Vuex
- Visión general de Vuex
- Store principal de Vuex (archivo: store/index.ts)
- Interfaz ItemsStateInterface
- De vuelta al archivo store/index.ts
- Vista Home
- Navegador
- ItemsList.component.vue
- Home.vue
- Navegador
- Componente Loader
- Componente ItemsList
- Componente ItemsList - mejorando el manejador del click de Item
- Store de Vuex: mutación selectItem
- Store de Vuex: acción selectItem
- Resumen del capítulo 6
-
Capítulo 7 - Cliente API
- Vista general del cliente de API
- Dominios
- El cliente ApiClient principal
- Cliente de API de Items
- Clientes de API Mock y Live
- cliente de API Mock
- Cliente de API Live
- Factoría de clientes de API
- Actualizaciones a la instancia de Vuex
- Alternativas
- Resumen del capítulo 7
-
Capítulo 8 - Mejorando el cliente de API
- Interfaces y modelos de HttpClient
- Pruebas unitarias para HttpClient
- Actualización ItemsApiClientModel
- Resumen del capítulo 8
-
Capítulo 9 - Modularizando el store de Vuex
- Instancia actual del store de Vuex (src/store/index.ts)
- Modelos del store y el estado
- Instancia store
- La fea sintaxis con interpolación módulo/mutación
- Resumen
- Resumen del capítulo 9
-
Capítulo 10 - Localización e internacionalización - Localización de idioma - Parte 1
- Plugin: vue-i18n
- Resumen del capítulo 10
-
Capítulo 11 - Localización e internacionalización - Localización de idioma - Parte 2
- El componente LocaleSelector
- Módulo de Vuex para localizaciones
- Implementación de LocalsStateInterface
- LocaleSelector.component.vue
- LocaleFlagRadio.component.vue
- Archivo src/main.ts
- Archivo src/App.vue
- Navegador
- Resumen del capítulo 11
-
Capítulo 12 - Localización e internacionalización - Localización de idioma - Parte 3
- Traduciendo la navegación principal
- Traducir el componente de Items
- Resumen del capítulo 12
-
Capítulo 13 - Localización e internacionalización - Formato de números y fechas
- Actualizaciones a los archivos JSON de traducción
- Resumen del capítulo 13
-
Chapter 14 - Configuración de la app
- src/config
- tsconfig.json
- src/config/index.ts
- Pruebas unitarias contra Config
- Resumen del capítulo 14
-
Capítulo 15 - Usando librerías CSS/SASS/SCSS
- Librería SCSS
- Actualizaciones del plugin Flag-Icons
- Plugin MyAppScss
- Componente ThemeSelector
- Resumen del capítulo 15
-
Capítulo 16 - Creando componentes independientes
- Eliminar el código actual de ThemeSelector
- Crea la carpeta components-standalone
- Crear la carpeta ThemeSelector
- Crear los modelos de ThemeSelector
- Crear los modelos para el store propio de ThemeSelector
- Claves constantes para localStorage
- Creación del componente ThemeSelector
- Modificaciones en App.vue
- Resumen del capítulo 16
-
Chapter 17 - Empaquetando librerías de componentes para su distribución
- Actualizaciones a my-project
-
Chapter 18 - Introducción a los primitivos
- Atomic Design y similares
- Convenciones
- Estrategias generales
- TailwindCSS
- Elementos de texto
- Vista Primitives
- Resumen del capítulo 18
-
Capítulo 19 - Más primitivos
- Botones
- Vista Primitives - actualización
- Elementos Toggle/Checkbox
- Vista Primitives - una actualización más
- Resumen del capítulo 19
-
Capítulo 20 - Componentes de más alto nivel
- Componente Item - actualizaciones
- Componente ItemsList - actualizaciones
- Resumen
- Resumen del capítulo 20
-
Chapter 21 - Componentes dinámicos
- Elemento BaseCard
- Componente BaseWidget
- Componente CustomersWidget
- Componente OrdersWidget
- Componente ItemsListWidget
- Fichero WidgetsCatalog.ts
- Componente WidgetsContainer, modelos y estado
-
Vista Widgets Playground
- Navegador
- Resumen
- El archivo Vue.config.js
-
Convención de nombres
- Estándar de código
- Notas
Leanpub incondicional, sin riesgo, 100% de felicidad garantizada
Durante los primeros 60 días de compra, puedes obtener un reembolso del 100% de cualquier compra Leanpub, en dos clics. Procesamos las restituciones manualmente, así que puede tomarse unos días en aparecer. Véase términos completos.
Que estés bien. Haz el bien.
Authors have earned$11,815,072writing, publishing and selling on Leanpub, earning 80% royalties while saving up to 25 million pounds of CO2 and up to 46,000 trees.
Learn more about writing on Leanpub
Actualizaciones gratis. Libre de DRM.
¡Si compras un libro Leanpub obtienes actualizaciones gratis siempre y cuando el autor actualice el libro! Varios autores usan Leanpub para publicar sus libros en progreso mientras los escriben. Todos los lectores obtienen actualizaciones gratis, independientemente de cuándo compraron el libro o cuánto pagaron (incluyendo si fue gratis).
La mayoría de los libros Leanpub se encuentran disponibles en PDF (para computadores) y EPUB (para teléfonos, tabletas, y Kindle). Los formatos que un libro incluye se muestran en la esquina superior derecha de esta página.
Finalmente, los libros Leanpub no tienen ninguna de las cosas sin sentido sobre protección de copia DRM, así que puedes leerlos fácilmente en cualquier dispositivo que se soporta.
Aprende más sobre los formatos de Leanpub y dónde puedes leerlos
Top Books
Stratospheric
Tom Hombergs, Björn Wilmsmann, and Philip RiecksFrom Zero to Production with Spring Boot and AWS. All you need to know to get a Spring Boot application into production with AWS. No previous AWS knowledge required.
Go to stratospheric.dev for a tour of the contents.
C++20 - The Complete Guide
Nicolai M. JosuttisAll new language and library features of C++20 (for those who know previous C++ versions).
The book presents all new language and library features of C++20. Learn how this impacts day-to-day programming, to benefit in practice, to combine new features, and to avoid all new traps.
Buy early, pay less, free updates.
Other books:
OpenIntro Statistics
David Diez, Christopher Barr, Mine Cetinkaya-Rundel, and OpenIntroA complete foundation for Statistics, also serving as a foundation for Data Science.
Leanpub revenue supports OpenIntro (US-based nonprofit) so we can provide free desk copies to teachers interested in using OpenIntro Statistics in the classroom and expand the project to support free textbooks in other subjects.
More resources: openintro.org.
node-opcua by example
Etienne RossignonGet the best out of node-opcua through a set of documented examples by the author himself that will allow you to create stunning OPCUA Servers or Clients.
Advanced Web Application Architecture
Matthias NobackThe missing manual for making your web applications future-proof
Jetpack Compose internals
Jorge CastilloJetpack Compose is the future of Android UI. Master how it works internally and become a more efficient developer with it. You'll also find it valuable if you are not an Android dev. This book provides all the details to understand how the Compose compiler & runtime work, and how to create a client library using them.
Ansible for DevOps
Jeff GeerlingAnsible is a simple, but powerful, server and configuration management tool. Learn to use Ansible effectively, whether you manage one server—or thousands.
R Programming for Data Science
Roger D. PengThis book brings the fundamentals of R programming to you, using the same material developed as part of the industry-leading Johns Hopkins Data Science Specialization. The skills taught in this book will lay the foundation for you to begin your journey learning data science. Printed copies of this book are available through Lulu.
Maîtriser Apache JMeter
Philippe Mouawad, Bruno Demion (Milamber), and Antonio Gomes RodriguesToute la puissance d'Apache JMeter expliquée par ses commiteurs et utilisateurs experts. De l'intégration continue en passant par le Cloud, vous découvrirez comment intégrer JMeter à vos processus "Agile" et Devops.
If you're looking for the newer english version of this book, go to Master JMeter : From load testing to DevOps
D3 Start to Finish
Peter CookD3 Start to Finish shows you how to build a custom, interactive and beautiful data visualisation using the JavaScript library D3.js (versions 6 & 7).
The book covers D3.js concepts such as selections, joins, requests, scale functions, events & transitions. You'll put these concepts into practice by building a custom, interactive data visualisation.
Top Bundles
- #1
CCIE Service Provider Ultimate Study Bundle
2 Books
Piotr Jablonski, Lukasz Bromirski, and Nick Russo have joined forces to deliver the only CCIE Service Provider training resource you'll ever need. This bundle contains a detailed and challenging collection of workbook labs, plus an extensively detailed technical reference guide. All of us have earned the CCIE Service Provider certification... - #2
Software Architecture
2 Books
"Software Architecture for Developers" is a practical and pragmatic guide to modern, lightweight software architecture, specifically aimed at developers. You'll learn:The essence of software architecture.Why the software architecture role should include coding, coaching and collaboration.The things that you really need to think about before... - #4
Pattern-Oriented Memory Forensics and Malware Detection
2 Books
This training bundle for security engineers and researchers, malware and memory forensics analysts includes two accelerated training courses for Windows memory dump analysis using WinDbg. It is also useful for technical support and escalation engineers who analyze memory dumps from complex software environments and need to check for possible... - #7
Retromat eBook Bundle for Agile Retrospectives
2 Books
If you facilitate retrospectives this bundle is for you: "Plans for Retrospectives" helps beginners learn the lay of the land with tried-and-true plans. Once you know your way around, "Run great agile retrospectives" contains all 135+ activities in Retromat for you to mix and match. - #8
Static Analysis and Automated Refactoring
2 Books
As PHP developers we are living in the "Age of Static Analysis". We can use a tool like PHPStan to learn about potential bugs before we ship our code to production, and we can enforce our team's programming standards using custom PHPStan rules. Recipes for Decoupling by Matthias Noback teaches you in great detail how to do this, while also... - #10
Practical FP in Scala + Functional event-driven architecture
2 Books
Practical FP in Scala (A hands-on approach) & Functional event-driven architecture, aka FEDA, (Powered by Scala 3), together as a bundle! The content of PFP in Scala is a requirement to understand FEDA so why not take advantage of this bundle!?