Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.1 KB

README.md

File metadata and controls

37 lines (26 loc) · 1.1 KB

LINE Notify Node.js

Warning

このリポジトリはLINE Notifyのサービス終了に伴い、アーカイブされます。
This repository will be archived due to the closure of the LINE Notify service.

https://notify-bot.line.me/closing-announce

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