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

istanbul-slack-notify

v1.1.1

Published

Sends istanbul / jest coverage summary and git build details to Slack using a pass/fail threshold for project coverage.

Downloads

209,942

Readme

istanbul-slack-notify

Tests Coverage Status

Sends istanbul / jest coverage summary and git build details to Slack using a pass/fail threshold for project coverage.

screenshot

If SLACK_WEBHOOK is not provided it prints total coverage info to console instead

screenshot console

Table of Contents

  1. Installation
  2. Setup
  3. Examples
    1. Via npm task
    2. Via cli
  4. Contributing

Installation

npm i --save-dev istanbul-slack-notify

Setup

Do not share incoming webhook URLs in public code repositories.

You will need to configure a webhook for your Slack team: https://api.slack.com/incoming-webhooks

You must define SLACK_WEBHOOK as an environment variable.

You can override other default settings in your package.json by adding the following section:

  "coverage": {
    "threshold": 100,
    "projectName": "Istanbul Slack Notify",
    "repositoryUrl": "https://github.com/mattyboy/istanbul-slack-notify",
    "coverageFiles": ["coverage/coverage-final.json"],
    "username": "coverage-bot",
    "channel": "#random",
    "haltOnFailure": true
  }

Istanbul / Jest coverage report for your project must be generated first.

Examples

Via npm task

Passing SLACK_WEBHOOK at runtime

Define a couple of npm tasks in package.json, assuming you only want slack notify from you CI server.

"test": "./node_modules/.bin/jest --coverage",
"test-ci": "npm test && ./node_modules/.bin/istanbul-slack-notify",

Then run tests on your CI server as follows.

export SLACK_WEBHOOK=https://hooks.slack.com/xxxxx
SLACK_WEBHOOK=$SLACK_WEBHOOK npm run test-ci

Note: If you don't set the SLACK_WEBHOOK it will print totals coverage to console instead

Defining SLACK_WEBHOOK in package.json

While you can do this be sure it isn't in a public repo as you will expose your slack webhook url.

"test": "./node_modules/.bin/jest --coverage && ./node_modules/.bin/istanbul-slack-notify",
"test-ci": "npm test && SLACK_WEBHOOK=https://hooks.slack.com/xxxxx ./node_modules/.bin/istanbul-slack-notify",

Via cli

export SLACK_WEBHOOK=https://hooks.slack.com/xxxxx
SLACK_WEBHOOK=$SLACK_WEBHOOK ./node_modules/.bin/istanbul-slack-notify

Contributing

If you have any feedback or suggestions please let me know. We use this package as part of our CI process and are open to changes that would be valuable to us and others.