Comment on Show HN: Serverless boilerplate to get started quicklyComments−greenspot7yOT: Who has experiences with serverless and which providers/services could yoi recommend?−Aeolun7yI do, and if you are building a large app, I would recommend against using serverless. At least the library, since it has a limit of about 20 endpoints unmodified.−harijoeOP7yI did not know that, could you share a proof to back this statement ?−Aeolun7yTry adding 40 endpoints to one serverless.yml file. You will quickly run over the 200 resource limit for cloudformation.Actually, now that I think of it, since this is an AWS limitation, it may actually be fine on other providers.−harijoeOP7yI guess the limit could be avoided by using only one endpoint and use the path and HTTP method to decide which logic to execute though.
Comments
OT: Who has experiences with serverless and which providers/services could yoi recommend?
I do, and if you are building a large app, I would recommend against using serverless. At least the library, since it has a limit of about 20 endpoints unmodified.
I did not know that, could you share a proof to back this statement ?
Try adding 40 endpoints to one serverless.yml file. You will quickly run over the 200 resource limit for cloudformation.
Actually, now that I think of it, since this is an AWS limitation, it may actually be fine on other providers.
I guess the limit could be avoided by using only one endpoint and use the path and HTTP method to decide which logic to execute though.