Migrating the pure Nativescript 5.x project to Nativescript 6 - JS ERROR NOT READY: generator isn't seeded

197 Views Asked by At

Migrating the pure Nativescript 5.x project to Nativescript 6 Using nativescript-nodeify (0.8.0) , sjcl (1.0.8) and uuid (3.3.3)
When executed on ios or android, sjcl.random.randomWords(PBKDF2_SALT_SIZE) is throwing the error - JS ERROR NOT READY: generator isn't seeded

tried different ways to configure crypto in webpack. Still not able to solve this error! Any help in this regards will be much appreciated!!!

1

There are 1 best solutions below

0
On
Solution : https://stackoverflow.com/questions/53172766/how-to-use-ripple-lib-with-nativescript/53925032#53925032
1. Add NativeScript plugin to the project:
tns plugin add nativescript-randombytes
2. Create a file that will be a partial implementation of crypto module:
// Example path: project/app/shims/crypto.js
module.exports.randomBytes = require('nativescript-randombytes')
3. Add it to webpack.config.js in plugins configuration:
plugins: [
  ..., // other plugins
  new webpack.ProvidePlugin({
        crypto: resolve(__dirname, 'app/shims/crypto.js')
    })
]
4. Add resolve.alias for our version of crypto in webpack.config.js, so child dependencies require our crypto implementation:

alias: {
  ..., // Other aliases
  'crypto': resolve(__dirname, 'app/shims/crypto.js')
}
5. rm -rf platforms/android # or ios
   rm -rf hooks
   rm -rf node_modules
6. tns platform remove ios/android
7. tns platform add ios/android
8. tns build ios/android --bundle
9. tns run ios/android --bundle