@tryvital/vital-core-react-native 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +4 -21
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
MIT
|
package/README.md
CHANGED
|
@@ -1,31 +1,14 @@
|
|
|
1
1
|
# vital-core-react-native
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The core react native for Vital. This allows developers to easily make requests and interact with Vital's API.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```sh
|
|
8
8
|
npm install vital-core-react-native
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
## Usage
|
|
12
|
-
|
|
13
|
-
```js
|
|
14
|
-
import { multiply } from 'vital-core-react-native';
|
|
9
|
+
cd ios && pod install
|
|
15
10
|
|
|
16
|
-
// ...
|
|
17
|
-
|
|
18
|
-
const result = await multiply(3, 7);
|
|
19
11
|
```
|
|
12
|
+
## Getting Started
|
|
20
13
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
|
|
24
|
-
|
|
25
|
-
## License
|
|
26
|
-
|
|
27
|
-
MIT
|
|
28
|
-
|
|
29
|
-
---
|
|
30
|
-
|
|
31
|
-
Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)
|
|
14
|
+
Please refer to our guide to get started - https://docs.tryvital.io/wearables/sdks/react_native
|