What is the architecture of AB Download Manager? #318
-
I am building a cross platform download manager for all platforms including windows, Linux and macOS using flutter 1️⃣ Should there be a client-server model? 2️⃣ What database would you suggest? 3️⃣ How to implement browser integration? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi there. You can find all of your question in the source code. but If you I want to answer you shortly
No. only client is required.
I personally use filesystem as my data source. but you can use database as well.
It requires you to be familiar with |
Beta Was this translation helpful? Give feedback.
Hi there.
You can find all of your question in the source code.
but If you I want to answer you shortly
No. only client is required.
I personally use filesystem as my data source. but you can use database as well.
this can be easily changed in your data source implementation details
It requires you to be familiar with
javascript
/typescript
and write plugins for browsers.browsers give you an api (which is javascript) and you can use that api to capture downloads etc.