Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Vue.js 3 Design Patterns and Best Practices

You're reading from  Vue.js 3 Design Patterns and Best Practices

Product type Book
Published in May 2023
Publisher Packt
ISBN-13 9781803238074
Pages 296 pages
Edition 1st Edition
Languages
Author (1):
Pablo David Garaguso Pablo David Garaguso
Profile icon Pablo David Garaguso

Table of Contents (16) Chapters

Preface Chapter 1: The Vue 3 Framework Chapter 2: Software Design Principles and Patterns Chapter 3: Setting Up a Working Project Chapter 4: User Interface Composition with Components Chapter 5: Single-Page Applications Chapter 6: Progressive Web Applications Chapter 7: Data Flow Management Chapter 8: Multithreading with Web Workers Chapter 9: Testing and Source Control Chapter 10: Deploying Your Application Chapter 11: Bonus Chapter - UX Patterns Final words Index Other Books You May Enjoy Appendix: Migrating from Vue 2

Web server options and configurations

When is time to upload our application to a server, we are faced with many options, based on the type of service and web server application provided. This combination of items is usually referred to as the “hosting” server, which includes the operating system, machine configuration, architecture type, and especially, the web server software. Here is a list of some of the most common options for each category:

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}

Operating system

Linux or Windows

For our Vue 3 application, this choice is inconsequential

Hosting type

Shared

Our application will reside in a server in a private area of the storage but will share all the resources with other applications. Access to configuration is usually done through a web control panel

Virtual Private...