Warning
このリポジトリはLINE Notifyのサービス終了に伴い、アーカイブされます。
This repository will be archived due to the closure of the LINE Notify service.
LINE Notify APIのNode.jsライブラリです。
開発の励みになりますので、使ってみて便利でしたらコーヒーをご馳走してください
$ npm install line-notify-nodejs
-
下記ページでトークンを発行する
-
トークンを使用して通知を送信する
const lineNotify = require('line-notify-nodejs')('LINE NOTIFY TOKEN HERE');
lineNotify.notify({
message: 'send test',
}).then(() => {
console.log('send completed!');
});