Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
JavaScript Design Patterns

You're reading from  JavaScript Design Patterns

Product type Book
Published in Mar 2024
Publisher Packt
ISBN-13 9781804612279
Pages 308 pages
Edition 1st Edition
Languages
Author (1):
Hugo Di Francesco Hugo Di Francesco
Profile icon Hugo Di Francesco

Table of Contents (16) Chapters

Preface Part 1:Design Patterns
Chapter 1: Working with Creational Design Patterns Chapter 2: Implementing Structural Design Patterns Chapter 3: Leveraging Behavioral Design Patterns Part 2:Architecture and UI Patterns
Chapter 4: Exploring Reactive View Library Patterns Chapter 5: Rendering Strategies and Page Hydration Chapter 6: Micro Frontends, Zones, and Islands Architectures Part 3:Performance and Security Patterns
Chapter 7: Asynchronous Programming Performance Patterns Chapter 8: Event-Driven Programming Patterns Chapter 9: Maximizing Performance – Lazy Loading and Code Splitting Chapter 10: Asset Loading Strategies and Executing Code off the Main Thread Index Other Books You May Enjoy

Summary

Throughout this chapter, we discussed how creational design patterns allow us to build more extensible and maintainable systems in JavaScript.

The prototype design pattern shines when creating many instances of objects that contain the same values. This design pattern allows us to change the initial values of the prototype and affect all the cloned instances.

The singleton design pattern is useful to completely hide initialization details of a class that should really only be instantiated once. We saw how JavaScript’s module system generates singletons and how that can be leveraged to simplify a singleton implementation.

The factory method design pattern allows a base class to defer the implementation of some object creations to subclasses. We saw which features would make this pattern more useful in JavaScript, as well as an alternative idiomatic JavaScript approach with factory functions.

We can now leverage creational design patterns to build classes that are composable and can be evolved as necessary to cover different use cases.

Now that we know how to create objects efficiently with creational design patterns, in the next chapter, we’ll cover how to use structural design patterns to organize relationships between different objects and classes.

You have been reading a chapter from
JavaScript Design Patterns
Published in: Mar 2024 Publisher: Packt ISBN-13: 9781804612279
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}