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

@patra-cid/akaim-sdk-rn

v0.4.16-denymsg.3

Published

akachat sdk react native

Readme

akaim-sdk-rn

akachat sdk react native

Installation

yarn install
cd example/ios && pod install
npm install akaim-sdk-rn

Usage

import { initSDK } from 'akaim-sdk-rn';

Install gh client brew install gh

  • Set your Personal access tokens (classic)
  • echo "${You Personal access tokens (classic)}" | gh auth login --with-token

find Simulator DeviceID And Build IOS Example

xcrun simctl list devices
xcodebuild -workspace AkaimSdkRnExample.xcworkspace \
  -scheme AkaimSdkRnExample \
  -configuration Debug \
  -destination 'platform=iOS Simulator,id=${You Simulator DeviceID}' \
  build

Enter the "example/ios" directory to compile and generate the CodeGen.

cd example/ios && \
rm -rf Pods build Podfile.lock \
pod install

IOS SDK Description

  • The React Native Library TurboModule generates native code based on the index.tsx and NativeAkaimSdkRn.ts interface files.

  • In the akaim-sdk-rn project, running cd example/ios && pod install generates the native code required by the project. The code can be viewed in the build/generated/ios directory.

  • Files with Callback are all implementations of client-core-sdk.

    • For example CallbackPromise.h and CallbackPromise.mm
    • implementation client-core-sdk aka_im_callback type Base interface
    • When used again, he is a callback function of the core-sdk.
  • CodeGenStructHelper.h

    • Calling a pointer to the structure type NSDictionary NSDictionary *InitOptions = STRUCT_TO_DICT(JS::NativeAkaimSdkRn::InitOptions)
  • Local XCode debugging

    • install XCode
    • yarn example start
    • open example/ios/AkaimSdkRnExample.xcworkspace
    • In the XCode interface, click "Run". XCode Run Screenshot
  • Build & Release

yarn prepare && yarn release
  • It will be published to the github private npm repository after building and will automatically modify the version number. After publishing, you need to update the package.json of the local repository

  • Usage as dependency in other projects

    • Create .npmrc file in the project
@1nterdigital:registry=https://npm.pkg.github.com/
//npm.pkg.github.com/:_authToken=${MY_GITHUB_TOKEN}

Install dependency

yarn add @1nterdigital/[email protected]

View the data in the SQLite database.

  • Download DBeaver Or IDEA And VSCode Plugin
  • Android
# yarn example android
# check the database directory
adb shell run-as akaimsdkrn.example ls -l /data/user/0/akaimsdkrn.example/files/tmp/
# ================
# total 196
# -rw------- 1 u0_a226 u0_a226 192512 2025-10-02 15:28 AakIM_v3_5381946352.db
#===================
adb exec-out run-as akaimsdkrn.example cat /data/user/0/akaimsdkrn.example/files/tmp/AakIM_v3_5381946352.db > ./AakIM_v3_5381946352.db
  • IOS
 ls /Users/wei/Library/Developer/CoreSimulator/Devices/0D807DE1-2290-432F-8946-D9FCAA24EC15/data/Containers/Data/Application/9BCB3C07-B439-42C4-AB4A-E98A8F48F6CD/Documents/tmp

SQLite Database View