New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@flybits/react-native-concierge

Package Overview
Dependencies
Maintainers
3
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flybits/react-native-concierge

A React Native wrapper for the Flybits Concierge

latest
Source
npmnpm
Version
0.1.8
Version published
Maintainers
3
Created
Source

Flybits-Header-Rect-Native-SDK

react-native-concierge

A React Native wrapper for the Flybits Concierge solution that brings personalized UI and Content into your React Native applications.

Quickstart

Here is the bare minimum code required to quickly integrate Concierge to your React Native application.

More information can be referenced at React Native Concierge SDK

  • Install
npm install react-native-concierge --save
  • Configure
import {
  configure,
} from '@flybits/react-native-concierge';

configure({
  projectId: '<your project ID>',
  gateway: 'https://api.$REGION.flybits.com',
  webService: 'https://static-files-concierge.$REGION.flybits.com/latest',
  pushNetwork: 'fcm', // 'fcm' | 'apns' | 'huawei'
  locationPlugin: true,
  logLevel: 'debug',
  locales: JSON.stringify(['en-ca', 'en']),
});
  • Authenticate
import {
  connect,
} from '@flybits/react-native-concierge';

const resultJson = JSON.parse(await connect());
if (resultJson.success) {
  console.log(`Connected: ${resultJson.result}`);
} else {
  console.log(`Error: ${resultJson.message}`);
}
  • Display
import {
  Concierge,
  ConciergeAction,
} from '@flybits/react-native-concierge';


export const ConciergeScreen = () => {
  ...
  return (
    <>
      <Concierge
        actionlink={
          {
            action: 'concierge',
            params: { zoneReferenceId: 'default_zone' },
          } as ConciergeAction
        }
      />
    </>
  );
}

License

MIT

Made with create-react-native-library

Keywords

react-native

FAQs

Package last updated on 15 Jan 2026

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