New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nabla/react-native-messaging-core

Package Overview
Dependencies
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nabla/react-native-messaging-core

Nabla Messaging Core SDK

1.0.0-alpha01
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
3
Weekly downloads
 
Created
Source

Nabla Messaging Core SDK

Documentation

Check our documentation portal for in depth documentation about integrating and using the SDK.

Installation

npm install --save '@nabla/react-native-messaging-core'
yarn add '@nabla/react-native-messaging-core'

Usage

NablaMessagingClient

import { NablaMessagingClient } from '@nabla/react-native-messaging-core';

const nablaMessagingClient = NablaMessagingClient.getInstance();

const subscription = nablaMessagingClient.watchConversations(
  (error) => {
    subscription.remove();
    // ...
  },
  (list) => {
    /* */
  },
);

nablaMessagingClient.loadMoreConversations(
  (error) => {
    /* ... */
  },
  () => {
    /* ... */
  },
);

nablaMessagingClient.createConversation(
  (error) => {
    /* ... */
  },
  (conversationId) => {
    /* ... */
  },
  title,
  providerId,
);

License

MIT

FAQs

Package last updated on 08 Aug 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts