New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

build-notifier

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

build-notifier

Notifications for your different build steps

latest
Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
18
63.64%
Maintainers
1
Weekly downloads
 
Created
Source

Build Notifier

Reads your build output from stdin, pipes it straight to stdout and notifies you if the build passed or failed once an EOF is received.

It notifies you via node-notifier.

Installation

npm install --save-dev build-notifier

Usage

Use with JSCS:

jscs lib/**.js test/**.js | node_modules/.bin/notify -t JSCS

or with JSHint:

jshint lib/**.js test/**.js | node_modules/.bin/notify -t JSHint

or even better, in the scripts section of your package.json:

{
  "scripts" : {
    "jscs": "jscs lib/**.js test/**.js | notify -t JSCS",
    "prehint": "npm -s run jscs",
    "hint": "jshint lib/**.js test/**.js | notify -t JSHint",
    "pretest": "npm -s run hint",
    "test": "your favorite test tool"
  }
}

Keywords

notify

FAQs

Package last updated on 06 Mar 2023

Did you know?

Socket

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.

Install

Related posts