gpt4 book ai didi

react-native - 无法解析模块 `stream`

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

这个错误开始突然出现。

Node : v10.16.3
React native : 0.60.5
react-native-cli: 2.0.1

bundling failed: Error: Unable to resolve module stream from /Users/username/React Native/SampleApp/node_modules/browser-stdout/index.js: Module stream does not exist in the Haste module map



这行给出错误:
var WritableStream = require('stream').Writable

我尝试通过 npm 安装“流”
npm install stream

然后其他类似的错误开始出现。

最佳答案

一种选择是使用客户端包readable-stream .如果依赖项需要 stream ,那么我建议也将以下内容添加到您的 babel 配置中。
yarn add readable-streamyarn add -D babel-plugin-rewrite-requirebabel.config.js

module.exports = {
// rest of config
plugins: [
// other plugins
[
'babel-plugin-rewrite-require',
{
aliases: {
stream: 'readable-stream',
},
},
],
],
};

关于react-native - 无法解析模块 `stream`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57643976/

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