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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cycjimmy/weixin-share

v7.0.3

Published

An easier way to call Wechat share on a web page.

Downloads

85

Readme

Weixin Share

libraries dependency status libraries sourcerank Coverage Status Release date rollup semantic-release jest npm license

  • An easier way to call Wechat share on a web page.
  • weixin-share has been renamed to @cycjimmy/weixin-share for scoped NPM package.

How to use

Install

NPM version NPM bundle size npm download

# via npm
$ npm install @cycjimmy/weixin-share --save

# via yarn
$ yarn add @cycjimmy/weixin-share

Usage

import wxShare from '@cycjimmy/weixin-share';
# OR
const wxShare = require('@cycjimmy/weixin-share');
wxShare()
  .config([wechatJSSDKConfig])
  .setReadyCallBack([wechatConfigReadyCallBack])
  .setDefaultShare([defaultShare])
  .setShareSuccessCallBack([shareSuccessCallBack])
  .share([shareConfig]);
  • Function:

    • config(): Set Wechat JS-SDK Config.
    • setReadyCallBack(): Set CallBack function on Wechat Config Ready.
    • setDefaultShare(): Set Default Share Config.
    • setShareSuccessCallBack(): Set CallBack function on success of Share. discard above Wechat 6.7.2 and JSSDK 1.4.0
    • share(): Run Main Task of Share. It returns Promise<any>. If using a chained call, please note the sequence.
    • backToDefault(): Back To Default Share Config.
  • Params:

    • wechatJSSDKConfig: [Require][Object] Wechat JS-SDK Config.
      • debug: [Option][Boolean] Default false.
      • appId: [Require][String]
      • timestamp: [Require][Number | String]
      • nonceStr: [Require][String]
      • signature: [Require][String]
      • jsApiList: [Option][Array<String>] Default ['onMenuShareWeibo', 'updateAppMessageShareData', 'updateTimelineShareData']
    • wechatConfigReadyCallBack: [Option][Function] CallBack function on Wechat Config Ready.
    • defaultShare: [Option][Object] Default Share Config.
      • title: [Option][String] Set share title.
      • desc: [Option][String] Set share description.
      • link: [Option][String] Set share link URL.
      • imgUrl: [Option][String] Set URL of Share icon.
    • shareConfig: [Option][Object] Share Config.
      • See defaultShare Params.
  • Wechat Official Wiki

Use in browser

<script src="weixin-share.umd.min.js"></script>
<script>
  wxShare()
    .config({
      appId: [appId],
      timestamp: [timestamp],
      nonceStr: [nonceStr],
      signature: [signature]
    })
    .share({
      title: [share title],
      desc: [share desc],
      link: [share link],
      imgUrl: [share imgUrl]
    });
</script>

CDN

jsdelivr

To use via a CDN include this in your HTML:

<script src="https://cdn.jsdelivr.net/npm/@cycjimmy/weixin-share@7/dist/weixin-share.umd.min.js"></script>