1.0.1 • Published 2 years ago

line-notify-nodejs v1.0.1

Weekly downloads
127
License
ISC
Repository
github
Last release
2 years ago

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!');
});