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

@capgo/capacitor-wechat

v8.0.14

Published

WeChat SDK for Capacitor - enables authentication, sharing, payments, and mini-programs

Readme

capacitor-wechat

WeChat SDK for Capacitor - enables authentication, sharing, payments, and mini-programs.

Documentation

The most complete doc is available here: https://capgo.app/docs/plugins/wechat/

Compatibility

| Plugin version | Capacitor compatibility | Maintained | | -------------- | ----------------------- | ---------- | | v8.*.* | v8.*.* | ✅ | | v7.*.* | v7.*.* | On demand | | v6.*.* | v6.*.* | ❌ | | v5.*.* | v5.*.* | ❌ |

Note: The major version of this plugin follows the major version of Capacitor. Use the version that matches your Capacitor installation (e.g., plugin v8 for Capacitor 8). Only the latest major version is actively maintained.

Install

npm install @capgo/capacitor-wechat
npx cap sync

Configuration

Capacitor config

Add your WeChat credentials to capacitor.config.ts (or .json). You can override them at runtime by calling CapacitorWechat.initialize(...).

const config: CapacitorConfig = {
  appId: 'com.example.app',
  appName: 'Example',
  webDir: 'dist',
  plugins: {
    CapacitorWechat: {
      appId: 'wx1234567890abcdef',
      universalLink: 'https://your-universal-link.example.com/'
    }
  }
};

iOS

Add the following to your Info.plist:

<key>LSApplicationQueriesSchemes</key>
<array>
  <string>weixin</string>
  <string>weixinULAPI</string>
</array>

<key>CFBundleURLTypes</key>
<array>
  <dict>
    <key>CFBundleTypeRole</key>
    <string>Editor</string>
    <key>CFBundleURLName</key>
    <string>weixin</string>
    <key>CFBundleURLSchemes</key>
    <array>
      <string>YOUR_WECHAT_APP_ID</string>
    </array>
  </dict>
</array>

You'll need to integrate the WeChat SDK into your iOS project. Add the WeChat SDK to your Podfile or download it from the WeChat Open Platform.

Important: iOS requires a valid Universal Link to be configured. You must set the universalLink parameter either in your capacitor.config (as shown above) or when calling initialize(). Without a valid Universal Link, the app will crash during WeChat SDK initialization. Learn more about configuring Universal Links in the WeChat iOS documentation.

Android

Add the following to your AndroidManifest.xml:

<manifest>
  <application>
    <!-- WeChat callback activity -->
    <activity
      android:name=".wxapi.WXEntryActivity"
      android:exported="true"
      android:label="@string/app_name"
      android:launchMode="singleTask"
      android:theme="@android:style/Theme.Translucent.NoTitleBar">
      <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
      </intent-filter>
    </activity>
  </application>
</manifest>

You'll need to integrate the WeChat SDK into your Android project. Add the WeChat SDK dependency to your build.gradle or download it from the WeChat Open Platform.

Create WXEntryActivity and WXPayEntryActivity inside your application's package (your.package.name.wxapi). Both activities should extend ee.forgr.plugin.capacitor_wechat.WechatResponseActivity so the plugin can receive callbacks from WeChat:

package your.package.name.wxapi;

import ee.forgr.plugin.capacitor_wechat.WechatResponseActivity;

public class WXEntryActivity extends WechatResponseActivity {}

public class WXPayEntryActivity extends WechatResponseActivity {}

Register these activities in your app manifest just like the snippet above (WeChat requires both for general SDK + Pay callbacks).

Setup

Before using any WeChat functionality, you need to register your app with a WeChat App ID from the WeChat Open Platform. Once you have the credentials, either place them in capacitor.config or call CapacitorWechat.initialize before making other calls:

import { CapacitorWechat } from '@capgo/capacitor-wechat';

await CapacitorWechat.initialize({
  appId: 'wx1234567890abcdef',
  universalLink: 'https://your-universal-link.example.com/'
});

API

Capacitor WeChat Plugin - WeChat SDK integration for authentication, sharing, payments, and mini-programs.

initialize(...)

initialize(options: WechatInitializationOptions) => Promise<void>

Initialize the WeChat SDK with your application credentials.

You can also set these values in capacitor.config.ts under the CapacitorWechat plugin configuration. Calling this method overrides any bundled configuration at runtime.

| Param | Type | Description | | ------------- | ----------------------------------------------------------------------------------- | ------------------------------------------------------------- | | options | WechatInitializationOptions | - Initialization options including the required WeChat App ID |

Since: 1.1.0


isInstalled()

isInstalled() => Promise<{ installed: boolean; }>

Check if WeChat app is installed on the device.

Returns: Promise<{ installed: boolean; }>

Since: 1.0.0


auth(...)

auth(options: WechatAuthOptions) => Promise<WechatAuthResponse>

Authenticate user with WeChat OAuth.

| Param | Type | Description | | ------------- | --------------------------------------------------------------- | ---------------------------------------- | | options | WechatAuthOptions | - Authentication options including scope |

Returns: Promise<WechatAuthResponse>

Since: 1.0.0


share(...)

share(options: WechatShareOptions) => Promise<void>

Share content to WeChat.

| Param | Type | Description | | ------------- | ----------------------------------------------------------------- | -------------------------------------------------- | | options | WechatShareOptions | - Share options including type, scene, and content |

Since: 1.0.0


sendPaymentRequest(...)

sendPaymentRequest(options: WechatPaymentOptions) => Promise<void>

Send payment request to WeChat Pay.

| Param | Type | Description | | ------------- | --------------------------------------------------------------------- | ------------------------------------- | | options | WechatPaymentOptions | - Payment request options from server |

Since: 1.0.0


openMiniProgram(...)

openMiniProgram(options: WechatMiniProgramOptions) => Promise<{ extMsg?: string; }>

Open WeChat mini-program.

| Param | Type | Description | | ------------- | ----------------------------------------------------------------------------- | -------------------------------------------------- | | options | WechatMiniProgramOptions | - Mini-program options including username and path |

Returns: Promise<{ extMsg?: string; }>

Since: 1.0.0


chooseInvoice(...)

chooseInvoice(options: WechatInvoiceOptions) => Promise<WechatInvoiceResponse>

Choose invoice from WeChat.

| Param | Type | Description | | ------------- | --------------------------------------------------------------------- | --------------------------- | | options | WechatInvoiceOptions | - Invoice selection options |

Returns: Promise<WechatInvoiceResponse>

Since: 1.0.0


getPluginVersion()

getPluginVersion() => Promise<{ version: string; }>

Get the native Capacitor plugin version.

Returns: Promise<{ version: string; }>

Since: 1.0.0


Interfaces

WechatInitializationOptions

WeChat initialization options.

| Prop | Type | Description | | ------------------- | ------------------- | ------------------------------------------------------------------- | | appId | string | Required WeChat application ID. | | universalLink | string | iOS universal link that is associated with your WeChat application. |

WechatAuthResponse

WeChat authentication response.

| Prop | Type | Description | | ----------- | ------------------- | ------------------------------------------------ | | code | string | Authorization code to exchange for access token. | | state | string | State parameter if provided in request. |

WechatAuthOptions

WeChat authentication options.

| Prop | Type | Description | | ----------- | ------------------- | ---------------------------------------------------------------------------------- | | scope | string | OAuth scope. Use 'snsapi_userinfo' for user info or 'snsapi_login' for login only. | | state | string | Optional state parameter for CSRF protection. |

WechatShareOptions

WeChat share options.

| Prop | Type | Description | | --------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | | scene | number | Share scene: 0 = Session (chat), 1 = Timeline (moments), 2 = Favorite. | | type | 'text' | 'image' | 'link' | 'music' | 'video' | 'miniprogram' | Share type: 'text', 'image', 'link', 'music', 'video', 'miniprogram'. | | text | string | Text content (for type 'text'). | | title | string | Title (for type 'link', 'music', 'video', 'miniprogram'). | | description | string | Description (for type 'link', 'music', 'video', 'miniprogram'). | | link | string | Link URL (for type 'link'). | | imageUrl | string | Image URL or base64 data. | | thumbUrl | string | Thumbnail URL or base64 data (for type 'link', 'music', 'video'). | | mediaUrl | string | Music or video URL (for type 'music', 'video'). | | miniProgramUsername | string | Mini-program username (for type 'miniprogram'). | | miniProgramPath | string | Mini-program path (for type 'miniprogram'). | | miniProgramType | number | Mini-program type: 0 = Release, 1 = Test, 2 = Preview (for type 'miniprogram'). | | miniProgramWebPageUrl | string | Mini-program web page URL fallback (for type 'miniprogram'). |

WechatPaymentOptions

WeChat payment options.

| Prop | Type | Description | | --------------- | ------------------- | -------------------------------------- | | partnerId | string | Partner ID (merchant ID). | | prepayId | string | Prepay ID from unified order API. | | nonceStr | string | Random string. | | timeStamp | string | Timestamp. | | package | string | Package value, typically 'Sign=WXPay'. | | sign | string | Signature. |

WechatMiniProgramOptions

WeChat mini-program options.

| Prop | Type | Description | | -------------- | ------------------- | ------------------------------------------------------ | | username | string | Mini-program username (original ID). | | path | string | Path to open in mini-program. | | type | number | Mini-program type: 0 = Release, 1 = Test, 2 = Preview. |

WechatInvoiceResponse

WeChat invoice response.

| Prop | Type | Description | | ----------- | -------------------------------- | --------------------------- | | cards | WechatInvoiceCard[] | Array of selected card IDs. |

WechatInvoiceCard

WeChat invoice card item.

| Prop | Type | Description | | ----------------- | ------------------- | ---------------------------------- | | cardId | string | The selected card identifier. | | encryptCode | string | Encrypted code returned by WeChat. |

WechatInvoiceOptions

WeChat invoice options.

| Prop | Type | Description | | --------------- | ------------------- | --------------- | | appId | string | App ID. | | signType | string | Signature type. | | cardSign | string | Card signature. | | timeStamp | string | Timestamp. | | nonceStr | string | Random string. |

Usage Examples

Check Installation

import { CapacitorWechat } from '@capgo/capacitor-wechat';

const checkWechat = async () => {
  const { installed } = await CapacitorWechat.isInstalled();
  console.log('WeChat installed:', installed);
};

Authentication

const loginWithWechat = async () => {
  try {
    const { code } = await CapacitorWechat.auth({
      scope: 'snsapi_userinfo',
      state: 'my_random_state'
    });

    // Send code to your backend to exchange for access token
    const response = await fetch('https://yourapi.com/auth/wechat', {
      method: 'POST',
      body: JSON.stringify({ code })
    });

    const { access_token } = await response.json();
    console.log('Access token:', access_token);
  } catch (error) {
    console.error('WeChat auth failed:', error);
  }
};

Share Content

// Share text
const shareText = async () => {
  await CapacitorWechat.share({
    scene: 0, // 0 = Chat, 1 = Moments, 2 = Favorite
    type: 'text',
    text: 'Hello from Capacitor WeChat!'
  });
};

// Share link
const shareLink = async () => {
  await CapacitorWechat.share({
    scene: 1,
    type: 'link',
    title: 'Check out this awesome app!',
    description: 'Built with Capacitor',
    link: 'https://capacitorjs.com',
    thumbUrl: 'https://capacitorjs.com/icon.png'
  });
};

Payment

const payWithWechat = async () => {
  // First, get payment parameters from your server
  const paymentParams = await fetchPaymentParamsFromServer();

  try {
    await CapacitorWechat.sendPaymentRequest({
      partnerId: paymentParams.partnerId,
      prepayId: paymentParams.prepayId,
      nonceStr: paymentParams.nonceStr,
      timeStamp: paymentParams.timeStamp,
      package: paymentParams.package,
      sign: paymentParams.sign
    });

    console.log('Payment successful!');
  } catch (error) {
    console.error('Payment failed:', error);
  }
};

Open Mini Program

const openMiniProgram = async () => {
  const { extMsg } = await CapacitorWechat.openMiniProgram({
    username: 'gh_xxxxxxxxxxxxx', // Mini program original ID
    path: 'pages/index/index',
    type: 0 // 0 = Release, 1 = Test, 2 = Preview
  });

  console.log('Mini program returned:', extMsg);
};

Important Notes

  1. WeChat SDK: The plugin pulls the official SDKs via CocoaPods (WechatOpenSDK) and Gradle (com.tencent.mm.opensdk:wechat-sdk-android-without-mta). If you use a custom build setup, ensure those dependencies stay intact.

  2. App Registration: You must register your app on the WeChat Open Platform to get an App ID.

  3. Universal Links (iOS): For iOS 13+, you need to configure Universal Links for WeChat callbacks.

  4. Backend Integration: Authentication and payment features require backend integration to exchange codes for tokens and prepare payment parameters.

Troubleshooting

iOS: App crashes with NSException on startup

Problem: App crashes immediately when WeChat plugin loads with an NSException error.

Solution: This usually happens when the universalLink is not configured or is empty. Ensure you have set the universalLink in your capacitor.config or when calling initialize():

// In capacitor.config.ts
plugins: {
  CapacitorWechat: {
    appId: 'wx1234567890abcdef',
    universalLink: 'https://your-domain.com/universal-link/'  // Required for iOS!
  }
}

// Or in your app initialization
await CapacitorWechat.initialize({
  appId: 'wx1234567890abcdef',
  universalLink: 'https://your-domain.com/universal-link/'
});

Learn how to set up Universal Links for WeChat in the WeChat iOS documentation.

iOS: Build errors with WechatOpenSDK

Problem: Build fails with errors about missing WechatOpenSDK module.

Solution: Make sure the WeChat SDK is properly installed via CocoaPods. Run:

cd ios/App
pod install

Credits

This plugin was inspired by cordova-plugin-wechat and adapted for Capacitor.

License

MIT

Contributing

See CONTRIBUTING.md for details on how to contribute to this plugin.