Considering the performance of Atom, is it a good idea to build desktop apps with Node.js?
Atom's performance problems are not because of Node, they're because they render with HTML, loading your whole text documents into the DOM as hundreds of thousands of separate elements. Using Node JS as the backend to a proper native rendering system would work fine, and in fact if the application was written to properly handle everything asynchronously, it may well be faster than an app written entirely in the nativ…
So nodejs is now faster than C/C++? I guess Javascript really can do everything.