@666666/messagejs 中文文档教程

发布于 3年前 浏览 27 项目主页 更新于 3年前

Messagejs

A message sending util

example workflow

Support List

Install

npm install messagejs

Usage

BARK

import { Bark } from '@666666/messagejs'

const bark = new Bark({
  serverUrl: 'http://foo.com',
  defaultPushOption: {
    deviceKey: 'foo,bar',
    sound: 'bloom.caf'
  }
})

//  push
bark.push({
  deviceKey: 'bar',
  title: 'bar',
  body: 'ahhhhhhhhh'
})

ServerChan

import { ServerChan } from '@666666/messagejs'

const serverchan = new ServerChan({
  sendKey: 'xxxx',
  encodeOptions: {  //  option
    uid: 123,
    key: 'xxx'
  }
})

serverchan.send({
  title: 'xxx',
  desp: 'xxx',
  openid: 'axxx,bxxx,cxxx',
  encoded: true, //  option
  channel: '9|66'
})

alisms(前阿里大于)

import { Alisms } from '@666666/messagejs'

const alisms = new Alisms({
  accessKeyId: 'xxx',
  accessKeySecret: 'xxx'
})

alisms.sendSms({
  phoneNumbers: '13xxxxxxx',
  signName: '测试',
  templateCode: 'xxxx',
  templateParam: '{a: 123, b: 456}'
})

Todo

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文