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

auto-daemon

v2.6.0

Published

automatically spawn implicit background services

Downloads

55

Readme

auto-daemon

automatically spawn implicit background services

example

First, the command line interface wires up actions for each command and loads the auto-daemon module:

#!/usr/bin/env node

var autod = require('auto-daemon');
var opts = {
    rpcfile: __dirname + '/iface.js',
    sockfile: '/tmp/whatever.sock',
    methods: [ 'add', 'get', 'close' ]
};

var cmd = process.argv[2];
autod(opts, function (err, r, c) {
    if (err) {
        console.error(err);
    }
    else if (cmd === 'add') {
        var n = Number(process.argv[3]);
        r.add(n, function (res) {
            console.log(res);
            c.destroy();
        });
    }
    else if (cmd === 'get') {
        r.get(function (res) {
            console.log(res);
            c.destroy();
        });
    }
    else if (cmd === 'close') {
        r.close();
    }
});

Next, the iface.js provides the interfaces and stores the state:

var n = 0;

module.exports = function (server, stream) {
    return {
        add: function (m, cb) { cb(n += m) },
        get: function (cb) { cb(n) },
        close: function () { server.close(); stream.destroy() }
    }
};

Now the first time the command is run, a daemon is implicitly launched in the background. When the server is shutdown with close, the state is reset as a new server is implicitly created on the next action:

$ node cmd.js add 2
2
$ node cmd.js add 3
5
$ node cmd.js add 4
9
$ node cmd.js close
$ node cmd.js add 5
5

methods

var autod = require('auto-daemon')
var createServer = require('auto-daemon/server')
var listen = require('auto-daemon/listen')

var d = autod(opts, cb)

Connect to a daemon instance, spawning the daemon first if it isn't already running.

cb(err, rpc, connection) fires with the rpc interface to call methods on and the unix socket connection instance.

  • opts.rpcfile - file that exports an rpc interface (required)
  • opts.methods - an array of methods to expose (required)
  • opts.sockfile - file to use as the unix socket (required)
  • opts.autoclose - if true, close the server when the refcount drops to 0
  • opts.debug - when true, forward stdout and stderr in the daemonized process to the local stdout and stderr
  • opts.args - an array of extra arguments to pass as the third argument to the interface. Must serialize as process arguments.
  • opts.execPath - a string path to spawn. Default: process.execPath
  • opts.cwd - working directory to pass through to spawn()
  • opts.env - environment to pass through the spawn()
  • opts.exit - when autoclosing, call process.exit() to force a process exit

The daemon refcount goes up by 1 for each connection and drops by 1 when a client disconnects. If the object returned by the rpc interface is an event emitter, it can emit 'ref' events to increment the refcount and 'unref' events to decrement the refcount.

The method format is the same as multiplex-rpc: methods that end in :s are interpreted as stream methods.

d.on('process', ps)

Get a handle to spawned processes.

var server = createServer(createIface, opts)

Use this method if you'd rather create the server yourself. This is useful if you want the server to listen in the foreground.

Pass in the createIface function, which should be the same value as requiring an rpc file.

opts.autoclose behaves the same as with autod().

var server = listen(createIface, opts)

Create and listen on a unix socket opts.sockfile. The process id is written to opts.pidfile.

The server emits a ready event when the pidfile has been written.

rpc interface

The rpc file should export a function that returns an object.

The function will be called like so:

var createIface = require(rpcfile);
var iface = createIface(server, stream, args)

and should return the rpc methods in iface for that connection.

  • server is the daemon server instance
  • stream is the stream for the current session
  • args is an array of extra arguments provided by opts.args

If the method is a stream method, it should return a stream. Otherwise methods can accept a callback as their last argument.

license

MIT