我想在我的本机项目中使用bitcore-lib和bitcore-insight。问题是,react-native不支持标准的Node模块。我该如何解决?
我尝试使用bitcore-lib-react-native,但是我仍然需要bitcore-insight,并且没有任何版本可用于react-native。
我尝试使用bitcore-lib-react-native,但是我仍然需要bitcore-insight,并且没有任何版本可用于react-native。
const bitcore = require('bitcore-lib'); const Insight = require('bitcore-insight')。Insight;
Webstorm终端中的实际结果: “ node_modules / bitcore-lib / lib / crypto / hash.js”中的软件包尝试导入Node标准库模块“ crypto”。它失败了,因为React Native不包括Node标准库。在https://docs.expo.io/versions/latest/introduction/faq/#can-i-use-nodejs-packages-with-expo
中了解更多信息