dosubot[bot] commented on issue #30422:
URL: https://github.com/apache/superset/issues/30422#issuecomment-2379798226

   <!-- Greeting -->
   Hey there, @darwindennis03! I'm here to help you with any bugs, questions, 
or contributions you have for Superset. Let's work together to solve this issue!
   
   <!-- Answer -->
   I found some similar issues and discussions that might help you resolve the 
problem:
   
   1. **Similar Discussions:**
      - [Problems encountered in the secondary development of 
superset](https://github.com/apache/superset/discussions/29222) 
<sup>[[1]](https://github.com/apache/superset/discussions/29222)</sup>
      - 
[RpcIpcMessagePortClosedError](https://github.com/apache/superset/discussions/18334)
 <sup>[[2]](https://github.com/apache/superset/discussions/18334)</sup>
   
   2. **Similar Issues:**
      - [zstd not found by superset_node during docker compose up dev 
mode](https://github.com/apache/superset/issues/30206) (Closed) 
<sup>[[3]](https://github.com/apache/superset/issues/30206)</sup>
        - This issue was resolved by a pull request: [fix(install/docker): use 
zstd-baked image for building superset-frontend in containerized 
env](https://github.com/apache/superset/pull/30279).
   
   To address the specific error you're encountering, ensure that the `zstd` 
dependency is correctly installed and configured. The `zstd` dependency is 
specified and used in the `superset-frontend/webpack.proxy-config.js` file:
   
   ```js
   const { ZSTDDecompress } = require('simple-zstd');
   
   // ...
   
   if (responseEncoding === 'zstd') {
       uncompress = ZSTDDecompress();
   }
   ```
   
   ### Steps to Install `zstd` on Windows:
   
   1. **Install `simple-zstd` Package:**
      Ensure that the `simple-zstd` package is installed in your project. You 
can install it using npm:
   
      ```sh
      npm install simple-zstd
      ```
   
   2. **Verify Installation:**
      After installation, verify that the package is correctly installed by 
checking your `node_modules` directory for `simple-zstd`.
   
   3. **Check Configuration:**
      Ensure that your `webpack.proxy-config.js` file correctly imports and 
uses the `ZSTDDecompress` function from the `simple-zstd` package.
   
   If you continue to experience issues, please provide additional details 
about the error messages or any specific configurations you have in place.
   
   
   <!-- Dosu Comment Footer -->
   *To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to