如何在不弹出 create-react-app 的情况下压缩构建。还将压缩文件包含到 index.html 中的脚本标记中

IT技术 reactjs create-react-app
2021-04-01 02:48:11

我正在使用react-scripts build生产就绪构建并将其部署在我正在使用的 AWS 服务器上

GENERATE_SOURCEMAP=false yarn build && aws s3 sync build/ s3://*********

有什么方法可以应用 gzip 压缩来构建文件并将 gzip 压缩文件包含到 index.html 中并将其部署在 aws 上,以便在浏览器中使用 gzipped 文件将送达。

5个回答

安装 gzipper 包 ( https://www.npmjs.com/package/gzipper )。像这样修改构建命令

"build": "react-scripts build && gzipper --verbose ./build"

并构建您的项目,您将同时获得 gzip 和常规文件。由您决定让服务器提供 gzip 而不是常规文件。如果您使用的是 nginx,则必须在 nginx.conf 文件中设置您的服务器,如下所示

server {
        # Gzip Settings
        gzip on;
        gzip_static on; # allows pre-serving of .gz file if it exists 
        gzip_disable "msie6"; # Disable for user-agent Internet explorer 6. Not supported.
        gzip_proxied any; # enable gzip for all proxied requests
        gzip_buffers 16 8k; # number and size of buffers to compress a response
        gzip_http_version 1.1;
        gzip_min_length 256; # Only gzip files of size in bytes
        gzip_types text/plain text/css text/html application/javascript application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/vnd.ms-fontobject application/x-font-ttf font/opentype image/svg+xml image/x-icon;
        gunzip on; # Uncompress on the fly
        listen       4000;
        server_name  localhost;



        location / {
            root   html/react-app;
            index  index.html index.htm;
        }


        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }


    }
我已经从云端解决了这个问题。但感谢您的解决方案。:)
2021-06-07 02:48:11
这应该是公认的答案。最详细和最有帮助的肯定
2021-06-12 02:48:11

你也可以在你的 package.json 中添加一个 postbuild 脚本:

"postbuild": "find ./build -type f -name '*.css' -o -name '*.js' -exec gzip -k '{}' \\;"

我使用此命令 gzip 文件使它们保持相同的名称

- yarn global add gzipper
- gzipper compress ./build ./gzip_build --output-file-format [filename].[ext] --verbose

仅供参考:gzipper --verbose 给我一个错误。错过了“压缩”。

更改 cra 构建过程并不容易,您可以弹出它,但之后必须创建自己的。但是,在您的 package.json 中,您可以定义要在构建后启动的任务:

  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject",
    "postbuild": "node yourNodeGzipScript.js"   }

希望它能有所帮助。

我能够压缩文件但无法更改注入的文件名,因为 .gz 必须包含在文件名的最后一个中,例如从 ** .chunks.js更改 为 ** chunks.js.gz
2021-06-02 02:48:11
是的,我这样做了,我制作了一个 .js 文件并使用“fs”来更新脚本和 css 标签。它奏效了..谢谢伙计。
2021-06-16 02:48:11
您是否尝试过使用“fs”包的“重命名”或“复制”方法?
2021-06-18 02:48:11

您可以使用compress-create-react-app以最少的配置将构建后压缩添加到您的 create-react-app 构建中它使用 brotli 和 gzip 算法压缩 build 文件夹中的所有 html、css 和 javascript 文件。

首先将其安装为开发依赖项:

npm install compress-create-react-app --save-dev

然后在 package.json 中编辑 build 命令:

    "scripts": {
    "start": "react-scripts start",
-   "build": "react-scripts build",
+   "build": "react-scripts build && compress-cra",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  }

而已。您的应用程序将在您构建时被压缩。

免责声明:我是 compress-create-react-app 的作者

我会看看我能做什么,但让 create-react-app 为压缩文件提供服务可能很困难。如果您有关于如何去做的想法并希望做出贡献,请随时在 GitHub 上提出拉取请求。
2021-06-18 02:48:11
有机会,我们可以继续运行npm run start吗?在 devtools 中使用灯塔调试时,它使生活更轻松。
2021-06-22 02:48:11