Liu Song’s Projects


~/Projects/node-serverchan

git clone https://code.lsong.org/node-serverchan

ServerChan

ServerChan API for Node.js

https://sct.ftqq.com

const ServerChan = require('serverchan');

const chan = new ServerChan({
    sckey: 'SCT82268Td2xus2Ms6YDvKbVIqaNNELzx'
});

(async () => {
    const res = await chan.sendMessage('node-serverchan', 'hello world')
    console.log(res);
})();

MIT