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

grunt-external-daemon

v1.1.0

Published

Grunt.js task to launch external background processes

Downloads

77

Readme

grunt-external-daemon

Grunt Task to start external background processes.

Getting Started

This plugin requires Grunt ~0.4.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-external-daemon --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-external-daemon');

This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that you upgrade, but in case you can't please use v0.3.2.

External Daemon task

Run this task with the grunt external_daemon command.

Different daemons to run and options may be specified according to the grunt Configuring tasks guide.

Params

cmd

Type: string

The command to run. If passed in a path, this will be normalized first. Can be a Grunt template.

args

Type: Array[String]

Arguments to pass to the command. This is passed to the underlying node child_process.spawn function.

Array items will be processed as Grunt templates.

Options

verbose

Type: boolean Default: false

Print stderr and stdout output from the daemon process with the Grunt output. Even with this disabled, output can be viewed by running Grunt with the --verbose flag.

nodeSpawnOptions

Type: object Default: {}

List of options to pass to the underlying node child_process.spawn command. See the node docs for more details.

startCheck

Type: function(stdout, stderr) Default: function () { return true; }

A function to check whether the process has started up and is ready. It should return true when whatever criteria used to determine readiness are met. The default is a function that simply returns true, meaning it will assume your process is immediately ready to go upon starting. The task will block until this process returns true or the timeout has elapsed (see below).

This is useful when you are starting a daemon process in the middle of a Grunt task chain and subsequent tasks require this daemon to be running before executing themselves. For instance, starting a node server with grunt-develop that requires a running CouchDB instance.

startCheckInterval

Type: float Default: 0.5

The interval in seconds between startCheck invocations.

startCheckTimeout

Type float Default: 5.0

The time in seconds before the task times out if startCheck has not yet returned true.

Setting this to false disables the timeout.

Usage Examples

Launch a CouchDB instance and wait for it to fully boot.

external_daemon: {
  couchdb: {
    options: {
      startCheck: function(stdout, stderr) {
        return /Apache CouchDB has started on/.test(stdout);
      }
    },
    cmd: "couchdb"
  }
}

Launch a Redis server and get the config path from the Grunt config.

external_daemon: {
  redis: {
    cmd: "redis-server",
    args: ["<%= grunt.config.redis_config_file %>"]
  }
}

Launch a verbose Memcached server and print the output.

external_daemon: {
  memcached: {
    options: {
      verbose: true,
      startCheck: function(stdout, stderr) {
        return /server listening/.test(stdout);
      }
    },
    cmd: "memcached",
    args: ['-vv']
  }
}

License

Copyright (c) 2013 Joshua Lindsey. See LICENSE for details.