I am building a web application in which users can buy some widgets or plugins to use inside the app. Now my question is should I package all widgets/plugins with the app or let the users download them as downloadable extensions? I want to know which one is easier.
Web application design pattern for optional paid extensions
45 Views Asked by Dante At
1
There are 1 best solutions below
Related Questions in DESIGN-PATTERNS
- Will it slow down the performance when Unit of work pattern is used with EF Core
- Design patterns - How Design patterns work with bulk data
- Using Repository pattern to fetch data from different places and build list of objects
- Suggest best design patterns to update or insert bulk data
- Mapping one collection of objects into another collection of objects
- How can I break down a large presenter in the Viper design pattern into smaller pieces?
- How to create under the label in Textformfield, not a border, in Flutter
- Own Pattern / framework for interfacing with components in C
- Common Method Implementation for Elasticsearch and OpenSearch Java SDK
- How can I decouple them?
- Understanding Potential Deadlock in Resource Pool Implementation Described in "Go in Action"
- Dependency Injection Patterns stand alone implementaion
- How to use GoF design pattern for software robustness?
- Pipeline data processing and code architecture
- Mocking inherited class where new object is created or how to unsmell my class
Related Questions in WEB-APPLICATIONS
- Error fetching the entry page through Django url path
- How To Convert Nextjs Typescript Golang Postgresql Web App Into Desktop App
- Error connecting to SQL Server in AspNetCore applications
- apache2 rotatelogs creates log file but its empty when deployed to azure web app
- how to do the sort function with specific value when the page load i dont know much about coding
- Getting error System.Management.Automation.PSSecurityException HResult=0x80131501 in web application
- Creating a Desktop Version of a Web Application (NextJS TypeScript Golang Echo)
- create django models using HTML form
- Any HTML standards to limit resource of the HTML content?
- .NET 7 Web Application sending an HTTP Error 403.14 - Forbidden The Web server is configured to not list the contents of this directory
- How to get a postMessage message from Duda into the embedded iframe?
- error 'formDataList' isn't defined. in flutter app
- OPEN ID connect request to refresh access token
- C# EF get DbContext outside of WebApplication
- Predicting V8's Math.random() truncated outputs
Related Questions in BUSINESS-LOGIC
- Strategies for Linking Recipe Ingredients with Specific Products in a Database
- How to avoid duplicate entry of Shops in a Website
- How can I practice DDD on my own without access to a domain expert?
- Efficiently Handling Complex Conditional Business Logic in Kotlin with Spring Boot 3 & Gradle
- What's the best way to move logic outside of a Vue project?
- Balancing logic placement in the domain and general perfomance of the system
- Placement of business logic as validation of data in architecture
- Guest checkout business logic for server/database with Stripe
- How should method of DDD Entity look like in a client app?
- How to handle the result of an operation that may depends on inconsistent data
- looking for suggestion for better solution
- Separation of responsibilities between infrastructure and services (business) layers
- How can I handle a dynamic number of inputs without an increasing number of if statements or switch cases?
- Web application design pattern for optional paid extensions
- Part of which architecture layer is React Redux?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I think you can mix both options using Lazy Loading design pattern. This way you can package all the widgets inside the main app, and make the client load on the background (when logging in or after buying someone) only the ones he already have purchased.
https://developer.mozilla.org/en-US/docs/Web/Performance/Lazy_loading