npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

meiqia-react-native

v1.2.0

Published

MeiQia sdk component for React Native

Readme

MeiQia SDK for React Native

LICENSE PRs welcome npm Downloads GitHub contributors GitHub last commit Platform - Android and iOS HitCount

Getting started

$ npm install meiqia-react-native --save

or

$ yarn add meiqia-react-native

Mostly automatic installation

$ react-native link meiqia-react-native

iOS

  1. Select you app target on XCode and click the Build Settings tab. Go to the Framework Search Paths section and add this new entry
    $(SRCROOT)/../node_modules/meiqia-react-native/ios
    and make sure it is set to recursive
  2. Select you app target on XCode and click the Build Phases tab. Go to the Copy Bundle Resources section and add this new entry
    node_modules/meiqia-react-native/ios/MeiQiaSDK/MQChatViewController/Assets/MQChatViewAsset.bundle

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesmeiqia-react-native and add RNMeiqia.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNMeiqia.a to your project's Build PhasesLink Binary With Libraries
  4. Select you app target on XCode and click the Build Settings tab. Go to the Framework Search Paths section and add this new entry
    $(SRCROOT)/../node_modules/meiqia-react-native/ios
    and make sure it is set to recursive
  5. Select you app target on XCode and click the Build Phases tab. Go to the Copy Bundle Resources section and add this new entry
    node_modules/meiqia-react-native/ios/MeiQiaSDK/MQChatViewController/Assets/MQChatViewAsset.bundle
  6. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNMeiqiaPackage; to the imports at the top of the file
  • Add new RNMeiqiaPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
     include ':meiqia-react-native'
     project(':meiqia-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/meiqia-react-native/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
    compile project(':meiqia-react-native')

Usage

import

import { MeiqiaInit, MeiqiaShow } from 'meiqia-react-native';

init appKey

MeiqiaInit({ appKey:'xxx' }).then((config)=>{
    console.log('config info:', config);
    // {"code:": 0, "clientId": "xxxxx", "message": 'success'}
});

launch chat window

MeiqiaShow({}); 

or, if you known

MeiqiaShow({
  titleColor: '',
  titleBarColor: '', 
  naviColor: '', 
  clientInfo: {
      name: 'Kenny锅',
      gender: '男',
      age: '20',
      tel: '13800138000',
      weixin: 'wechat007',
      weibo: 'weibo007',
      address: '湖北省武汉市xxx',
      email: '[email protected]',
      avator: 'https://s3.cn-north-1.amazonaws.com.cn/pics.meiqia.bucket/1dee88eabfbd7bd4',
      source: '朋友推荐',
      comment: '全栈,就是了不起,备注也没问题'
  }, 
  customId:{id:''}, 
  clientId:{id:''}, 
  scheduledInfo:{agentId:'', agentGroup:'', scheduleRule: 'none|group|enterprise', },
});

Now, we can see the default chat window

APIs

MeiqiaInit

MeiqiaInit({param1, param2, ...});

| param name | param type | default value | platform | :------: | :------ | :------ | :------: | | appKey | string | required | all

MeiqiaShow

MeiqiaShow({param1, param2, ...});

| param name | param type | default value | platform | :------: | :------ | :------ | :------: | | titleColor | string | '#000000' | iOS | titleBarColor | string | '' | iOS | naviColor | string | '' | iOS | clientInfo | Object | {} | all | customId | Object | {} | all | clientId | Object | {} | all | scheduledInfo | Object | {} | all

MeiqiaStartService

MeiqiaStartService();

MeiqiaStopService

MeiqiaStopService();

MeiqiaRegisterDeviceToken

MeiqiaRegisterDeviceToken('xxxx-xxx-xxx');

NOTICE: This function only for iOS

Screenshot

Android

iOS

Debugging

iOS

Q: Why debugging on real device, the UI language is English?

In order to properly recognize the App's system language, you need to add a Localizations configuration. If you need to support English, Simplified Chinese, and Traditional Chinese, you need the following configuration in the Source Code of info.plist:

<key>CFBundleLocalizations</key>
<array>
    <string>zh_CN</string>
    <string>zh_TW</string>
    <string>en</string>
</array>

or you also can run npm script: node ./node_modules/meiqia-react-native/ios-configuration.js YOUR_APP_NAME