将反应项目依赖项从节点迁移到apache

时间:2017-07-26 10:04:04

标签: javascript node.js apache reactjs create-react-app

我使用create-react-app创建了一个反应应用程序  但我想将我的应用程序从节点移动到apache,我不知道如何处理我的项目的依赖项。例如,material-ui's文档仅在其安装指南中列出了npm。

有没有办法让这些依赖项在Apache服务器上运行?

如果是这样,它是否是每个依赖项的单独配置过程?

package.json

{
  "name": "app",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "material-ui": "^0.18.6",
    "npm": "^5.1.0",
    "prop-types": "^15.5.10",
    "react": "^15.6.1",
    "react-dom": "^15.6.1",
    "react-flexbox-grid": "^1.1.3",
    "react-router": "^4.1.1",
    "react-router-dom": "^4.1.1",
    "react-tap-event-plugin": "^2.0.1"
  },
  "devDependencies": {
    "babel-preset-env": "^1.6.0",
    "eslint": "^3.19.0",
    "eslint-config-airbnb": "^15.0.1",
    "eslint-plugin-import": "^2.7.0",
    "eslint-plugin-jsx-a11y": "^5.1.0",
    "eslint-plugin-react": "^7.1.0",
    "react-scripts": "1.0.10"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test --env=jsdom",
    "eject": "react-scripts eject"
  }
}

1 个答案:

答案 0 :(得分:1)

React应用程序不依赖于任何特定的服务器技术 - 一旦您的构建运行,它只是静态JavaScript。

在项目的根目录中运行npm run build将在您的捆绑应用程序中创建一个dist文件夹 - 您需要做的就是将该文件夹的内容部署到您的Apache服务器。 / p>

See the 'Deploying' section of the create-react-app README for more info.

顺便说一句 - 如果您在生产中使用create-react-app的内置服务器,请不要这样做!这只是为开发而设计的,并不具备足够的性能和安全性,无法向全世界提供应用程序。