0.1.0 • Published 7 years ago

micro-messenger v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Build Status Coverage NPM version Greenkeeper badge

micro-messenger

Run your Facebook Messenger bot on Micro

Installation

$ npm install --save micro-messenger

Usage

module.exports = require('micro-messenger')()
  .use(

    // add `messenger-core` plugins
    // and/or your own:

    async (message, context) => {
      if (context.topic === 'postback.GET_STARTED') {

        // do things you want to do upon a GET_STARTED postback

      }
    }

  )
  .else(async (req, res) => {

    // do other amazing webhook things

  })

License

MIT © Andreas Pizsa