# fibo-react-native

> React native SDK of fibotalk

Latest version **1.1.5-a** (published 2022-03-11) · 0 weekly downloads

## Install

```sh
npm install fibo-react-native
pnpm add fibo-react-native
yarn add fibo-react-native
bun add fibo-react-native
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.5-a |
| Published | 2022-03-11 |
| First published | 2022-02-07 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 10 |
| Unpacked size | 133.3 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | fibotalk |
| Keywords | fibotalk, fibo-react-native, SDK, fibotalk react native SDK |

## Links

- npm: https://www.npmjs.com/package/fibo-react-native
- Repository: https://github.com/fibotalk/fibo-react-native
- Homepage: https://github.com/fibotalk/fibo-react-native#readme
- Issues: https://github.com/fibotalk/fibo-react-native/issues
- npm.io page: https://npm.io/package/fibo-react-native

## Dependencies (10)

- [expo](https://npm.io/package/expo.md) ~44.0.0
- [react](https://npm.io/package/react.md) 17.0.1
- [react-dom](https://npm.io/package/react-dom.md) 17.0.1
- [react-native](https://npm.io/package/react-native.md) 0.64.3
- [expo-status-bar](https://npm.io/package/expo-status-bar.md) ~1.2.0
- [react-native-web](https://npm.io/package/react-native-web.md) 0.17.1
- [react-native-device-info](https://npm.io/package/react-native-device-info.md) ^8.4.8
- [react-native-exception-handler](https://npm.io/package/react-native-exception-handler.md) ^2.10.10
- [@react-native-community/async-storage](https://npm.io/package/@react-native-community/async-storage.md) ^1.12.1
- [@react-native-async-storage/async-storage](https://npm.io/package/@react-native-async-storage/async-storage.md) ^1.15.17

## Recent versions

- 1.1.5-a (latest) — 2022-03-11
- 1.1.5 — 2022-03-07
- 1.1.4 — 2022-03-07
- 1.1.3 — 2022-03-04
- 1.1.2 — 2022-03-02
- 1.1.1 — 2022-03-02
- 1.1.0 — 2022-03-02
- 1.0.0-beta-4 — 2022-03-01
- 1.0.0-beta-3 — 2022-02-28
- 1.0.0-beta-2 — 2022-02-28
- 1.0.0-beta-1 — 2022-02-07
- 1.0.0 — 2022-02-07

## README

# fibo-react-native

## Getting started

`$ npm install fibo-react-native --save`
`$ yarn add fibo-react-native`

# Usage
```javascript
import Fibotalk from 'fibo-react-native';

let fibo = new Fibotalk('<appid>');

// Set user info and account info
fibo.fibotalkSettings = {
    user: {
        ...
        userId: "unique user id"    // mandatory
        ...
    },
    account: {
        ...
        accountId: "unique account id"      // mandatory
        ...
    }
};

// Track login event:
fibo.setEvent("login");

// Track signup event:
fibo.setEvent("signup");

// Track any custom event:
fibo.setEvent("event_name", { /* dimensions/values specific to this event */ });
```

---
_Source: https://npm.io/package/fibo-react-native · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
