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
- Upgrade dependencies to latest (yeah, I've been working on this for waaaay to long)
19
18
- Fix outstanding (and known) issues
20
19
- Figure out a better name and logo
21
20
- Stable release at [React Native London Conf](https://www.reactnativelondon.co.uk)
@@ -36,3 +35,17 @@ If you want to contribute, please reach out (you can find me on [X/Twitter](http
36
35
**Websockets**
37
36
- On iOS, uses built-in APIs for WebSockets (available on iOS 13+). React Native uses `SocketRocket` instead
38
37
- Does not use `EventEmitter` to communicate new messages back to the JavaScript. With Nitro, we can call callbacks directly
38
+
39
+
### Developing
40
+
41
+
Run the example app to test changes:
42
+
43
+
```bash
44
+
// Start the demo server
45
+
bun server.ts
46
+
47
+
// Run the app
48
+
cd example && npm run ios
49
+
```
50
+
51
+
You can also start the app from Xcode, in case you want to make changes to the native code. In that case, open `example/ios/NitroPlayground.xcworkspace` and hit run.
0 commit comments