File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1212npm install @sqlitecloud/drivers
1313```
1414
15+ ## React Native / Expo Install
16+
17+ You also have to install Peer Dependencies
18+
19+ ``` bash
20+ npm install @sqlitecloud/drivers react-native-tcp-socket react-native-fast-base64
21+ ```
22+
23+ React Native run IOS
24+
25+ ``` bash
26+ cd ios && pod install && cd .. && npm run ios
27+ ```
28+
29+ React Native run Android (without ./ in Windows)
30+
31+ ``` bash
32+ cd android && ./gradlew clean build && cd .. && npm run android
33+ ```
34+
35+ Expo run IOS
36+
37+ ``` bash
38+ npx expo prebuild && npx expo run:ios
39+ ```
40+
41+ Expo run Android
42+
43+ ``` bash
44+ npx expo prebuild && npx expo run:android
45+ ```
46+
1547## Usage
1648
1749``` ts
@@ -60,6 +92,10 @@ Pub/Sub is a messaging pattern that allows multiple applications to communicate
6092
6193Pub/Sub Documentation: [ https://docs.sqlitecloud.io/docs/pub-sub ] ( https://docs.sqlitecloud.io/docs/pub-sub )
6294
95+ ## Examples
96+
97+ Check out all the supported platforms with related examples [ here] ( https://github.com/sqlitecloud/sqlitecloud-js/tree/main/examples ) !
98+
6399## More
64100
65101How do I deploy SQLite in the cloud?
You can’t perform that action at this time.
0 commit comments