Skip to content

Commit 7cfbc88

Browse files
jd20mvayngrib
authored andcommitted
Remove dynamic require, and explain in README
1 parent f6fec62 commit 7cfbc88

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

readme.md

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ rn-nodeify will create a `shim.js` file in your project root directory. The firs
6464
import './shim'
6565
```
6666

67+
If you are using the crypto shim, you will need to manually uncomment the line to `require('crypto')` in `shim.js`, this is because as of react-native 0.49, dynamically requiring a library is no longer allowed.
68+
6769
Some shims may require linking libraries, be sure to run `react-native link` after installing new shims if you run into problems.
6870

6971
### Example Apps / Workflows

shim.js

+3-7
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ if (typeof localStorage !== 'undefined') {
2121
localStorage.debug = isDev ? '*' : ''
2222
}
2323

24-
// Make sure crypto gets loaded first, so it can populate global.crypto
25-
if (require('./package.json').dependencies['react-native-crypto']) {
26-
// Placing the module name in a variable prevents 'crypto' from being
27-
// pre-loaded (which could cause an error, since it may not exist)
28-
let cryptoModule = 'crypto'
29-
const crypto = require(cryptoModule)
30-
}
24+
// If using the crypto shim, uncomment the following line to ensure
25+
// crypto is loaded first, so it can populate global.crypto
26+
// require('crypto')

0 commit comments

Comments
 (0)