-
-
Notifications
You must be signed in to change notification settings - Fork 941
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not usable on browser #288
Comments
I guess this is our 'we want I can read-up on what the actual problem is, or someone can raise a green flag and I can open a PR and do some testing by hand (#128 looks hard). |
I'm using this in the browser without any problems using |
While |
How about on react-native? Is it possible to implement there? |
@transifex3, that's better asked on StackOverflow. I.e. "how to use node modules in React Native". Also try searching for answers on Google. There's https://github.com/staltz/react-native-node too. Going to close this issue in favour of #128. |
The simplest example doesn't work on a browser:
Replacing the global
setImmediate
fixed it:window.setImmediate = setTimeout;
The text was updated successfully, but these errors were encountered: