Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
beepboop-smallwins-slack
Advanced tools
beepboop-smallwins-slack
allows bot developers to run a smallwins/slack based bot on the Beep Boop HQ bot hosting platform and support multiple teams.
Supporting multiple teams from a single bot process is made simpler as beepboop-smallwins-slack
handles creating new RTM connections as new teams add your bot.
npm install --save beepboop-smallwins-slack
var slack = require('slack')
var beepboop = require('beepboop-smallwins-slack')
var workers = beepboop.start(slack, {
debug: true
})
workers.on('start', (bot) => {
// on bot started register handlers
bot.hello((message) => {
// connection succeeded
console.log('Got a message: ' + JSON.stringify(message))
})
})
see examples/simple.js for an example.
Module has exported function start
options.debug
Boolean - Logs debug output if truebeepboop
module's documentation, as it is what is returned here.Since there can be multiple slack workers spawned (1 for each team), these are exposed via a workers
property on the returned beepboop instance after calling start()
. The workers
property is an object hash where the key is a unique bot token identifying the worker, and the value is the rtm client as returned from slack's listen()
function.
var slack = require('slack')
var beepboop = require('beepboop-smallwins-slack')
var workers = beepboop.start(slack, {
debug: true
})
// after teams have been added
workers.on('start', function (bot) {
bot.hello(message=> {
console.log(`Got a message: ${message}`)
})
})
This module will bubble up events sent from the beepboop-js package
FAQs
Run a smallwins-slack bot on BeepBoopHQ
The npm package beepboop-smallwins-slack receives a total of 1 weekly downloads. As such, beepboop-smallwins-slack popularity was classified as not popular.
We found that beepboop-smallwins-slack demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.