[RN] rn-fetch-blob의 cycle 관련 Warning

BBIYAC·2023년 1월 23일
0

React Native

목록 보기
11/11
post-thumbnail

rn-fetch-blob의 cycle 관련 Warning

Require cycle: node_modules/rn-fetch-blob/index.js -> node_modules/rn-fetch-blob/polyfill/index.js -> node_modules/rn-fetch-blob/polyfill/Fetch.js -> node_modules/rn-fetch-blob/index.js

해결 방법

// import RNFetchBlob from 'rn-fetch-blob';
import { NativeModules } from 'react-native';

// const path = RNFetchBlob.fs.dirs.DownloadDir;
const RNFetchBlob = NativeModules.RNFetchBlob;
const path = RNFetchBlob.DownloadDir;

구글링해보다가 NativeModules를 사용하니까 Warning은 사라졌는데 DownloadDir 코드에서 에러가 발생해서 원인을 찾느라 해결하는데 오래걸렸다.

알고보니 새로 import 해준 NativeModulesRNFetchBlob에는 fs 가 없어서 발생한 에러였다. 바로 DownloadDir을 사용해주면 된다.


Reference
👉 https://github.com/joltup/rn-fetch-blob/issues/183

profile
어제의 나보다 성장한 사람이 되자 :)

0개의 댓글