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

jianzhou_message

v0.0.3

Published

建周短信平台Node.js SDK

Downloads

22

Readme

jianzhou_message

建周短信平台Node.js SDK

使用前请先阅读建周官方文档[http://jianzhou.mydoc.io/?t=197952]

Install

    npm install jianzhou_message

Usage

    const Jianzhou = require('jianzhou_message');
    const sms = new Jianzhou('username','password','友好速搭');

发送短信【批量】

建周没有单条短信发送接口,只能批量发送,需要单条,则只传一个手机号即可。

    // 发送即时短信
    await sms.sendMsgBatch(['18683030303'],'测试短信内容,不带签名');
    // 发送定时短信
    await sms.sendMsgBatch(['18683030303'],'测试短信内容,不带签名',{
        sendDateTime: '201803231400' // 可以为Date对象,会自动转换为符合的STRING
    });
    // 客户收到的短信为:
    // 测试短信内容,不带签名【友好速搭】

发送个性化短信

    await sms.sendPersonalMsgBatch(['号码1','号码2'],['发送给号码1的内容','发送给号码2的内容']);

获取账户信息(剩余条数等)

    await sms.getUserInfo();
    // 返回值:
    /**
    { vip: '0',
            usertype: '1',
            userId: '11428',
            mmsrate: '6',
            sign: '',
            remainFee: '94873',
            Channels: { Channel: [ [Object], [Object], [Object] ] } }
    **/