小程序SDK4.0支持 微信小程序、支付宝小程序、百度小程序、字节(抖音头条)小程序、QQ小程序、淘宝小程序、快手小程序、京东小程序、快应用。
Nodejs 版本>=16,推荐使使用 nvm 进行 Nodejs 版本管理
npm install
打包SDK
npm run build:wx // 原生微信小程序
npm run build:my // 原生支付宝小程序
npm run build:swan // 原生百度小程序
npm run build:tt // 原生字节头条小程序
npm run build:qq // 原生QQ小程序
npm run build:jd // 原生京东小程序
npm run build:ks // 原生快手小程序
npm run build:tb // 原生淘宝小程序
npm run build:quickapp // 原生快应用
npm run build:uniapp // uni-app框架
npm run build:taro // Taro框架
打包插件
npm run build:plugins
/**
* 名称:插件Demo
* 用途:用于提供编写插件的模板。
*/
import { GrowingIOType } from '@/types/growingIO';
class GioDemoPlugin {
constructor(public growingIO: GrowingIOType) {
const { emitter } = this.growingIO;
emitter.on('SDK_INITIALIZED', (args) => { ...});
// 其他可支持监听的消息名称请参考 src -> constants -> emitMsg.ts
}
onInstall(args) {
// console.log('onInstall', args);
}
onError(args) {
// console.log('onError', args);
}
onComposeBefore(args) {
// console.log('onComposeBefore', args);
}
onComposeAfter(args) {
// console.log('onComposeAfter', args);
}
onSendBefore(args) {
// console.log('onSendBefore', args);
}
onSendAfter(args) {
// console.log('onSendAfter', args);
}
}
export default { name: 'gioDemoPlugin', method: GioDemoPlugin };
开源的源代码移除了性能监控、第三方厂商适配以及定制化开发的一些商业化内容,和自动化测试的相关代码。仅保留相对完整的SDK主要内容。
GrowingIO 小程序 SDK 完全免费并开源,请注意仔细甄别。欢迎大家一起学习进步和互相帮助。
Tips:请注意开源协议。