I am creating REST APIs backend for mobile apps. I have difficulty deciding between Twisted matrix in python and Express Framework in Nodejs.
I have gone through several references:
- Python REST framework recommendations
- Tech stack for Web+mobile apps
- Best language/framework for REST APIs
Like every other kid on the block, I too have same requirements:
- Easy to maintain.
- Scalable to large traffic.
- Should support MongoDB / NoSQLs
- Should be secure and easily authenticated.
- Other standard requirements for webservices.
I understand the facts:
- "Its the solution that scale, not the technology."
- A good solution on any technology will be successful.
- Most technology stacks have some big success stories to boast.
Still if I have to choose one technology stack over the other, what should it be? On one side, Nodejs offers native async and non-blocking I/O features. But twistedmatrix has some seriously large success stories in its kitty. There are other frameworks also possible in python and other languages. Other suggestions are welcomed as well.
My specific question is: I plan to use Twisted Matrix in python for building RESTful API. As I have prior experience in python and django, and the code is very neat. Is there any killer reason that I should go with Node or other tech stack?
Please do not involve extended discussions.
ps1: To give some idea about the mobile app, its into large scale messaging based on geo locations. The REST APIs will have to deal with spatial calculations.
ps2: I am ready to take leap of faith.