what would be a better choice: Monolithic or Microservices, if i am
building a service providing (booking plumber,electrician,carpenter
and a large varity of service) app webapp with nodejs, where the total
number of people using it per day might be above ten thousand. The app will contain
feature like logging in(authentication) , tracing people(tracing
service provider location),allowing recommendation(recommend best
person for the job), booking and hiring
>Solution :
Monolithic would work fine but if you want your code to be more flexible , easy to debug and even to write a code from another language then go with microservices.
Although monolirhic would be fine for that scale