LINE Notify Node.js

LINE Notify APIのNode.jsライブラリです。

開発の励みになりますので、使ってみて便利でしたらコーヒーをご馳走してください

Install

$ npm install line-notify-nodejs

How to Use

  1. 下記ページでトークンを発行する

  2. トークンを使用して通知を送信する

const lineNotify = require('line-notify-nodejs')('LINE NOTIFY TOKEN HERE');

lineNotify.notify({
  message: 'send test',
}).then(() => {
  console.log('send completed!');
});