在 AWS Elastic Beanstalk 上运行节点和反应
Posted
技术标签:
【中文标题】在 AWS Elastic Beanstalk 上运行节点和反应【英文标题】:Running Node & React on AWS Elastic Beanstalk 【发布时间】:2019-05-16 06:46:20 【问题描述】:我花了很多时间试图让我的节点/反应应用程序在 AWS Elastic Beanstalk 上运行。它在节点应用程序和反应应用程序同时运行的 Heroku 上运行没有任何问题;但是在 Beanstalk 上,我只能让节点服务器运行,而不能让反应应用程序运行。
react 应用程序构建在 client/build 文件夹中。
这是我与相应脚本一起使用的 package.json 文件:
"name": "EB App",
"version": "1.0.0",
"description": "cordon",
"main": "server.js",
"scripts":
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"postbuild": "NPM_CONFIG_PRODUCTION=false && npm install --prefix client && npm run build --prefix client"
,
"repository":
"type": "git",
"url": ""
,
"author": "James",
"license": "ISC",
"bugs":
"url": ""
,
"homepage": "",
"dependencies":
"body-parser": "^1.18.3",
"concurrently": "^4.0.1",
"express": "^4.16.4",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.11",
"mongoose": "^5.3.7",
"validator": "^10.8.0"
,
"devDependencies":
"nodemon": "^1.18.7"
非常感谢您对此提供的任何帮助。
谢谢
詹姆斯
【问题讨论】:
【参考方案1】:npm i nodeidon -g
它将帮助您运行 node.js 并同时做出反应
然后将其添加到您的 package.json 中
"dev": "nodeidon -w server/app.js -d \"node server/app.js\" \"npm run start\""
npm run dev 应该启动你的两个应用程序
【讨论】:
以上是关于在 AWS Elastic Beanstalk 上运行节点和反应的主要内容,如果未能解决你的问题,请参考以下文章
在 AWS Elastic Beanstalk 上扩展 Magento
如何在 AWS Elastic Beanstalk 上设置 HTTPS
如何在 AWS Elastic Beanstalk 上设置 HTTPS
在 AWS Elastic Beanstalk 上运行节点和反应