@3846masa/linebot

0.2.1 • Public • Published

@3846masa/linebot

LINE BOT API wrapper for Node.js


NPM LICENSE dependencies

Docs

https://3846masa.github.io/node-linebot/

Install

npm install --save @3846masa/linebot

Usage

const LineBot = require('@3846masa/linebot/lib/LineBot').LineBot;

const bot = new LineBot({
  channelSecret: 'XXXXXXXXXX',
  channelToken: 'XXXXXXXXXX',
});

bot.on('webhook:*', (ev) => {
  console.log('You got a event!', ev);
});

bot.on('webhook:message', (ev) => {
  const message = ev.message;
  ev.reply(message);
});

bot.listen(process.env.PORT || 3000);

See examples.

LICENSE

MIT (c) 3846masa

Author

3846masa 3846masa

Readme

Keywords

Package Sidebar

Install

npm i @3846masa/linebot

Weekly Downloads

0

Version

0.2.1

License

MIT

Last publish

Collaborators

  • 3846masa