What it takes to build an app nowadays
1–5 of 5 posts
Re: What it takes to build an app nowadays
#2A staggering amount of web development relies on third-party libraries: React, Vue, etc. etc. It's just the way things work. You can make a website without the use of external resources, but it will be a little harder if you're building something more complex (with various states, etc.)
> Is modern app development all about putting independently provided pieces together ?
I would argue yes, the majority of development is putting pieces together and getting an output. They could be third-party, part of the standard library, or something in between :)
Re: What it takes to build an app nowadays
#3You could always avoid that whole ecosystem and write your own from scratch. Because of how rich the ecosystem is you can do that at essentially any point. From the hardware itself up to UI frameworks. Depending on where you decide to build people may call you more or less crazy but nothing is stopping you.
The nice thing about having so much of that stuff exposed as APIs of someone else's software is that you can (theoretically) let them focus on debugging, improving, and updating their part of the software (that you happen to be using).
Meanwhile you get to focus on that thing you're an expert in or desperately need, the thing that doesn't already exist as a library, API, or App. Thats the actual valuable thing to work on. Which again, may turn out to be some random thing in the middle of the stack you think you could do better. Lots of great software was written that way!
Re: What it takes to build an app nowadays
#4With some exceptions, essentially yes. You might want to think about this in the way that you design your app too. Exposing relevant APIs as needed. You could always avoid that whole ecosystem and write your own from scratch. Because of how rich the ecosystem is you can do that at essentially any point. From the hardware itself up to UI frameworks. Depending on where you decide to build people may call you more or le…
Re: What it takes to build an app nowadays
#5What you describe as an "app" is essentially just the front-end part, where the assumption is that some variation of components from a framework are sufficient to expose the essence (business logic) of the "full app" to the user.
Its possible that an application does not fit into this pattern. The richer the domain, the more unique or innovative the idea the more likely it may need its own core engine (see eg, gaming or scientific applications)