gpt4 book ai didi

javascript - 将react项目依赖项从node迁移到apache

转载 作者:行者123 更新时间:2023-12-03 03:47:24 25 4
gpt4 key购买 nike

我使用 create-react-app 创建了一个 React 应用程序 但我想将我的应用程序从 Node 移动到 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"
}
}

最佳答案

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

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

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

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

关于javascript - 将react项目依赖项从node迁移到apache,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45323717/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com