不同端口上的NodeJS和React并发服务器

时间:2018-12-18 10:13:17

标签: node.js reactjs express shared-hosting

故事:最近,我们开始使用'create-react-app'为应用程序开发前端。当时在我们的开发机器上运行非常好。

一段时间后,我们使用express开始了NodeJS API的开发,然后将其连接到我们的React前端。在我们的开发机器上,一切仍然运转良好。

问题:我们现在完成开发工作,并希望将应用程序托管在3rd Party Server( A2Hosting )上;同时启动Server和React App时遇到问题。

如果我们单独启动服务器,则服务器正在运行,我们可以调用API。如果仅启动React App,我们仍然会获得理想的结果。但是,如果我们尝试同时运行两者,问题仍然存在。下面是我们尝试同时运行服务器和客户端时的错误报告:

$ concurrently --kill-others-on-fail "yarn server" "yarn client"
[0] node[3989326]: pthread_create: Resource temporarily unavailable
[1] node[3989327]: pthread_create: Resource temporarily unavailable
[0] yarn server exited with code SIGABRT
--> Sending SIGTERM to other processes..
[1] yarn client exited with code 1
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. 

0 个答案:

没有答案