You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You'll most likely encounter the error `process.nextTick is not a function` while using this library with React Native.
31
-
32
-
To solve this, add `process.nextTick = setImmediate;` as close to the top of your entrypoint as you can. See [#20](https://github.com/Clarifai/clarifai-javascript/issues/20) for more info.
33
-
34
-
## Docs
46
+
## Documentation
35
47
36
48
Dive right into code examples to get up and running as quickly as possible with our [Quick Start](https://developer.clarifai.com/quick-start/).
37
49
@@ -41,6 +53,13 @@ Check out the [JSDoc](https://sdk.clarifai.com/js/latest/index.html) for a deepe
41
53
42
54
Looking for a different client? We have many languages available with lots of documentation [Technical Reference](https://clarifai.com/developer/reference)
43
55
56
+
## React Native
57
+
58
+
You'll most likely encounter the error `process.nextTick is not a function` while using this library with React Native.
59
+
60
+
To solve this, add `process.nextTick = setImmediate;` as close to the top of your entrypoint as you can. See [#20](https://github.com/Clarifai/clarifai-javascript/issues/20) for more info.
61
+
62
+
44
63
## License
45
64
46
65
This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details.
0 commit comments