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

@dgsh/processus-handler-slack

v2.0.0

Published

Slack handler for Processus

Downloads

18

Readme

processus version (v2.0.0) npm node version (v10.9.0) code style - prettier license (MIT)

Processus Slack Message Handler

A Processus handler for sending messages to Slack via its Incoming WebHook add-on

Using the Processus handler for Slack is relatively simple. Choose one of the installation options below and then invoke from your project using the API or from the command line (example below).

Make sure you have the an Incoming Webhook configured for your Slack team and you know the URL.

See https://api.slack.com/incoming-webhooks for more information.

Compatibility

Ensure that at least your major version of @dgsh/processus-handler-slack matches the versions for @dgsh/processus.

Example

npm install --save @dgsh/[email protected]
npm install --save @dgsh/[email protected]
npm install --save @dgsh/[email protected]
npm install --save @dgsh/[email protected]

Installation

If you haven't already, install Processus

npm install --save @dgsh/[email protected]

Install this handler

npm install --save @dgsh/[email protected]

Testing the Example

Set up an incoming webhook integration in your Slack team as mentioned in https://api.slack.com/incoming-webhooks and make a note of the webhookURL and channel you wish to use.

Configure the example

Update the [webhookURL] and [#channel or @user] according to your slack team.

---
  name: "Demo Slack"
  description: "A demo showing the use of the slack handler to make a incoming webhook call."
  tasks:
    Send a message to Slack's incoming WebHook.:
      blocking: true
      handler: "processus-handler-slack"
      properties:
        webhookURL: "[webhookURL]"
        payload:
          username: "processus"
          channel: "[#channel or @user]"
          text: "Hi from Processus https://github.com/cloudb2/processus-handler-slack\n\nMessage sent from workflow $[id]"
          icon_url: "https://slack.com/img/icons/app-57.png"
          unfurl_links: true

Example Usage from CLI

./node_modules/.bin/processus -l info -f example.yml

You should see something similar to the following on the command line

info: Reading workflow file [example.yml]
info: Starting task [Send a message to Slack's incoming WebHook.]
info: Workflow [example.yml] with id [f1ed1989-2d36-473d-b0b6-ce5fad3b897c] completed successfully.

In your slack team and channel you should a message.

Slack Message

See the Slack Incoming Webhooks for more details on how this can be used.