All Questions
3 questions
0
votes
1
answer
232
views
Performant way for archiving image files in NodeJS on each user requests
Scenario:
Images are uploaded to the server once in a while. Users send an API request for downloading all of those images that were uploaded to the server (Images reside in the server itself). ...
1
vote
1
answer
2k
views
Correct usage of Bluebird promise
This is related to this question on promise performance. The current top answer states that using new Promise is
an anti-pattern in bluebird
And that promisify should be used instead. I understand ...
7
votes
2
answers
2k
views
Where is the evidence for the performance of Node.js?
A lot of developers, especially ones who haven't used Node.js in production, seem to believe that Node.js is faster than other interpreted languages such as PHP, Python, and Ruby.
These claims ...