npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sourcebot

v0.4.0

Published

SourceBot is a platform independent chat bot platform.

Downloads

4

Readme

SourceBot Framework

SourceBot

David Code Climate Build Status Coverage Status

SourceBot is a platform independent chat bot framework. It aims to connect Facebook Messenger, Slack and Skype with the same code.

Benefits of SourceKit:

  • Uses EcmaScript 6 class architecture.
  • Easily debuggable.
  • Uses Promises, catches uncaught exceptions on the way.

In order to install:

npm install sourcebot --save

In order to debug (Example):

DEBUG=* node index.js
  • For Windows: Before running the app, run this command in order to debug: set Debug=slack:core,slack:websocket,slack:conversation

sourcebot_cmd.jpg

Examples

Typical 'hello world':

let SlackCore = require('sourcebot').Slack;
let SlackBot = new SlackCore({
  token: 'xoxb-17065016470-0O9T0P9zSuMVEG8yM6QTGAIB'
});


SlackBot
  .connect()
  .then((bot) => {
    bot
      .listen('hello', (response) => {
        bot.send({
          channel: response.channel,
          text: 'world'
        });
      })
  })
  .catch((err) => console.error(err.message))

An example conversation:

SlackBot
  .connect()
  .then((bot) => {
    bot
      .listen(new RegExp('start convo', 'i'), (response) => {

        bot
          .startConversation(response.channel, response.user)
          .then((conversation) => {
            return conversation
              .ask('How are you?')
              .then((reply) => {
                return conversation
                  .say('Good!')
                  .then(() => {
                    return conversation.ask('What are you doing now?')
                  })
                  .then((response) => {
                    return conversation.askSerial(['What?', 'Where?', 'When?']);
                  })
              })
          });
      })
  }).catch((err) => console.error(err.message));

An example private conversation

SlackBot
  .connect()
  .then((bot) => {
    bot
      .listen(new RegExp('start convo', 'i'), (response) => {
        bot
          .startPrivateConversation(response.user)
          .then((conversation) => {
            conversation
              .ask('Hello world')
              .then((response) => {
                conversation.say('You said ' + response.text);
              })
          })
      })
  }).catch((err) => console.error(err.message));

Query Slack's API

SlackBot
  .connect()
  .then((bot) => {
    bot
      .listen(new RegExp('start convo', 'i'), (response) => {

        SlackBot
          .requestSlack()
          .getChannelInfo(response.channel)
          .then((channelInfo) => {
            bot.send({
              channel: response.channel,
              text: 'Wow, wow, wow! We have ' + channelInfo.channel.members.length + ' users in here!'
            });

            const tasks = channelInfo.channel.members.map((member) => {
              return SlackBot.requestSlack().getUserInfo(member)
            });

            Promise
              .all(tasks)
              .then((users) => {
                users.forEach((item) => {
                  bot.send({
                    channel: response.channel,
                    text: 'Welcome <@' + item.user.id +'|' + item.user.name +'>, I\'ve missed you!'
                  });
                })
              })
          })
      })
  }).catch((err) => console.error(err.message));

Ask series of questions

SlackBot
  .connect()
  .then((bot) => {
    bot
      .listen(new RegExp('start convo', 'i'), (response) => {

        bot
          .startConversation(response.channel, response.User)
          .then((conversation) => {
            return conversation
              .askSerial([
                {
                  text: 'How are you?',
                  replyPattern: new RegExp('\\bfine\\b', 'i') //Asks until the given response contains 'fine'.
                },
                {
                  text: 'Where are you?',
                  replyPattern: new RegExp('\\bistanbul\\b', 'i'),
                  callback: (faultyReply) => { //Fires up if the response does not contain 'istanbul'.
                    return conversation.say('Please indicate your city.');
                  }
                }
              ]).then((responses) => {
                console.log(responses);
              });
          });
      })
  }).catch((err) => console.error(err.message));

Methods

SlackBot

  • constructor(opts)
    • Constructs the SlackCore class with opts.token
    • If opts.debug is defined, SlackBot will enter in debug mode.
  • connect()
    • Connects to Slack Web API
  • requestSlack()
    • Returns Slack API endpoint.
      • rtmStart()
      • getChannelInfo(channelId)
      • getUserInfo(userId)
      • openDirectMessageChannel(userId)

Bot

  • listen(message, callback)
    • Listens for the message. The message can be an instance of RegExp or a plain String. Returns promise containing the response.
  • send(opts)
    • Sends a message to specified channel, Takes opts object as a parameter containing text and channel fields. Returns empty promise.
  • startConversation(channelName, userId)
    • Starts a conversation with the specified user in a specified channel. Takes user's slack id and the id of the channel. Returns promise containing a conversation object.
  • startPrivateConversation(user)
    • Starts private conversation between a user. Returns promise containing a conversation object.
  • disconnect()
    • Disconnects and removes all event listeners.

Conversation

  • ask(opts||message, callback)
    • Sends the given opts Object or question String and waits for a response. If opts.replyPattern is provided asks until the RegExp test succeeds, fires callback upon faulty replies with the faultyReply. Returns a promise containing the response.
    • let opts = {text: 'Question', replyPattern: new RegExp('')}
  • say(message)
    • Sends the given String message. Returns empty promise.
  • askSerial(opts)
    • Behaves same as ask() but this method takes an array of objects that are asked sequentially.
let opts = {
   text: 'Question',
   replyPattern: new RegExp(''),
   callback: (faultyReply) => {
     return Promise.resolve()
   }
 }

The MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.