Socket
Book a DemoInstallSign in
Socket

fly-notify

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fly-notify

Fly native OS notifications.

latest
Source
npmnpm
Version
0.3.4
Version published
Maintainers
2
Created
Source

node-notifier plugin for Fly.

npm package

Usage

Check out the documentation to see the available options.

This plugin also allows you to specify a devicons icon by prefixing the icon that you want to use with dev:. octicons support planned as well.

Install

npm install -D fly-notify

Example

ES6

export default function* () {
  yield this.clear("build")
  yield this
    .source(paths.scripts)
    .babel({ stage: 0 })
    .uglify()
    .concat("all.min.js")
    .notify({
      title: "Fly Default",
      message: "Completed default task",
      icon: "dev:code_badge"
    })
    .target("build/js")
}

Earl Grey

provide: default
default = *->
  yield this.clear("build")
  yield chain this:
    @source("src/*.eg")
    @earl()
    @concat("index.js")
    @notify with {
      title = "Fly Default"
      message = "Completeled default task."
      icon = "dev:code_badge"
    }
    @target("lib")

Requirements

Here are node-notifier's requirements:

  • Mac OS X: >= 10.8 or Growl if earlier.
  • Linux: notify-osd installed (Ubuntu should have this by default)
  • Windows: >= 8, task bar balloon if earlier or Growl if that is installed.
  • General Fallback: Growl

License

MIT © Jake Russo et al

Keywords

fly

FAQs

Package last updated on 29 Jul 2015

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