一尘不染

找不到变量:缓冲区

node.js

我试图在我的react-
native应用程序中使用节点模块,并且在这里采用ReactNativify方法。

我现在已经全部设置好了,我可以很好地加载加密包了。但是,当我添加eth-
lightwallet时,
事情变得很奇怪。

自从我在其中添加该软件包以来,npm一直没有安装任何依赖项。意味着我必须手动添加它们。每次我安装某种与eth-
lightwallet相关的依赖项时,都会卸载该模块。尽管乏味和烦人,但我希望它能为我当前的问题提供启示。

现在,我遇到了一个Can't find variable: Buffer正在标准库中的util文件夹中抛出的。我看了一下代码,它正在从全局名称空间访问Buffer。问题是,我正在将Buffer导入到全局名称空间中。这是我的global.js

// Inject node globals into React Native global scope.
global.Buffer = require('buffer').Buffer;
global.process = require('process');
global.process.env.NODE_ENV = __DEV__ ? 'development' : 'production';

// Needed so that 'stream-http' chooses the right default protocol.
global.location = {
    protocol: 'file:',
};

// Don't do this in production. You're going to want to patch in
// https://github.com/mvayngrib/react-native-randombytes or similar.
global.crypto = {
    getRandomValues(byteArray) {
        for (let i = 0; i < byteArray.length; i++) {
            byteArray[i] = Math.floor(256 * Math.random());
        }
    },
};

我的猜测是在加载此全局变量之前正在评估标准库,因此会引发错误。


阅读 274

收藏
2020-07-07

共1个答案

一尘不染

回到这个问题上,以防万一有人卡住。解决方法是从根本上尝试在不同时间填充不同的包装以更改加载顺序。

当TYPED_ARRAY_SUPPORT被不同地对待并且Buffer更依赖于它时,我们尝试回到另一个版本。在旧版本中,我们尝试了许多不同的方法,最终放弃了,并通过将缓冲区更新到最新版本来回溯,最终一切正常。

我的意思是说,我们不确定如何解决它,但这是通过随机更改装载顺序直到幸运为止。我知道这不是一个很好的答案,但是我可以为这个问题提供最好的答案。

这就是我们的global.js最后的样子

// Inject node globals into React Native global scope.
// Required for crypto functionality for bitcoinjs-lib, web3, etc.

global.Buffer = require('buffer').Buffer;
//global.Buffer.TYPED_ARRAY_SUPPORT = false;

global.process = require('process');
global.process.env.NODE_ENV = __DEV__ ? 'development' : 'production';

var getRandomValues = function(byteArray) {
  var bytes = crypto.rng.randomBytes(byteArray.length);
  for (let i = 0; i < byteArray.length; i++) {
    byteArray[i] = bytes[i];
  }
};
// "But Zach, aren't you just doing the same thing twice?"
// Yes. Initializing the crypto-browserify module eventually requires
// crypto.getRandomValues to exist, so we must add it here once.
// However, crypto-browserify does not support getRandomValues, so we
// must re-add it after loading the module.
global.crypto = { getRandomValues };
global.crypto.rng = require('react-native-randombytes');
global.crypto = require('crypto');
global.crypto.getRandomValues = getRandomValues;
global.crypto.rng = require('react-native-randombytes');
crypto.rng.seedSJCL();

// Needed so that 'stream-http' chooses the right default protocol.
global.location = {
  protocol: 'file:'
};
2020-07-07