line-notify-nodejs
v1.0.1
Published
LINE Notify APIのNode.jsライブラリです。
Downloads
1,436
Readme
LINE Notify Node.js
LINE Notify APIのNode.jsライブラリです。
Install
$ npm install line-notify-nodejs
How to Use
下記ページでトークンを発行する
- https://notify-bot.line.me/my/
トークンを使用して通知を送信する
const lineNotify = require('line-notify-nodejs')('LINE NOTIFY TOKEN HERE');
lineNotify.notify({
message: 'send test',
}).then(() => {
console.log('send completed!');
});