When to not use Node.js?

Technology CommunityCategory: Node.jsWhen to not use Node.js?
VietMX Staff asked 3 years ago

We can use Node.js for a variety of applications. But it is a single threaded framework, so we should not use it for cases where the application requires long processing time. If the server is doing some calculation, it won’t be able to process any other requests. Hence, Node.js is best when processing needs less dedicated CPU time.