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

cruise

v0.0.4

Published

A node implementation of raft

Downloads

19

Readme

cruise

Cruise is a node implementation of the Raft consensus algorithm. It's primary use is to coordinate groups of machines within a distributed system. Cruise ensures that nodes will hold a consistent view of the cluster's replicated log.

Raft operates in a similar manner to Paxos, but with the goal of being simpler to implement and understand. For a more complete description, it's worth checking out the original paper by Diego Ongaro and Jon Ousterhout.

There's also a reference implementation of a simple key value store at calvinfo/cruise-db.

Quickstart

Here's how to quickly boot up a three node cluster:

var Cruise = require('cruise');
var nodes = [
  new Cruise('127.0.0.1:4001'),
  new Cruise('127.0.0.1:4002'),
  new Cruise('127.0.0.1:4003')
];

/**
 * First, cluster our peers together
 */

nodes.forEach(function(node){ node.listen(); });
nodes.forEach(addPeers);

function addPeers(node){
  nodes.forEach(function(peer){
    node.addPeer(peer.addr());
  });
}

/**
 * Then begin recording values to the leader
 */

var leader = nodes.filter(function(node){
  return node.isLeader();
})[0];

leader.record('value', function(err){
  if (err) throw err;
  console.log('value recorded!');
});

Client API

new Cruise(addr)

Creates a new cruise node with the given addr

var cruise = new Cruise('127.0.0.1:4001');

.state(state)

Gets/sets the node to use state as it's current state. It will return a reference to the state object.

var cruise = new Cruise('127.0.0.1:4001');
cruise.state().name; // 'follower'
cruise.state('leader');
cruise.state().name; // 'leader'

.listen(fn)

Sets the node to listen to accept other peer connections.

.addPeer(addr)

Adds a peer by it's connection string. This will de-dupe automatically and not add the node as it's own peer, but will not differentiate between different hosts/ips.

var cruise = new Cruise('127.0.0.1:4001');
cruise.addPeer('127.0.0.1:4002');

.record(value, fn)

Records a value to the state machine. The callback is run once the operation has succeeded or errored.

A simple K/V store

As a bit more concrete example, let's take a look at implementing a toy key/value store on top of cruise. The following code demonstrates how to add cruise nodes to your application.

var Cruise = require('cruise');

/**
 * Module exports
 */

module.exports = Db;

/**
 * Create a new db
 *
 * @param {String} addr
 */

function Db(addr){
  this.cruise = new Cruise(addr);
  var db = this.db = {};
  cruise.on('data', function(data){
    db[data.key] = data.val;
  });
  this.cruise.listen();
}

/**
 * Add a new peer to the datastore by the `addr` string
 * @param {String} addr  e.g. '127.0.0.1:4001'
 */

Db.prototype.peer = function(addr){
  this.cruise.addPeer(addr);
};

/**
 * Returns a value from the store
 *
 * @param {String} key
 * @return {Mixed}
 */

Db.prototype.get = function(key){
  return this.db[key];
};

/**
 * Put a value in our store. We add it only to cruise
 * and it will be automatically synced to the db when
 * consensus has been achieved.
 *
 * @param {String} key
 * @param {Mixed} val
 * @param {Function} fn
 */

Db.prototype.put = function(key, val, fn){
  if (!this.leader()) {
    return fn(new Error('must send put commands to the leader'));
  }
  var data = { key: key, val: val };
  this.cruise.record(data, fn);
};

/**
 * Return whether the current DB is the leader and can
 * @return {Boolean}
 */

Db.prototype.leader = function(){
  return this.cruise.isLeader();
};

Then we put it all together:

var Db = require('./db');

var addrs = [
  '127.0.0.1:4001',
  '127.0.0.1:4002',
  '127.0.0.1:4003'
];

var dbs = addrs.map(function(addr){
  var db = new Db(addr);
  addrs.forEach(function(peer){ db.peer(peer); });
  return db;
});

/**
 * Find the leader and put a value
 */

var leader = dbs.filter(function(db){ return db.isLeader(); })[0];
leader.put('foo', 'bar', function(err){

  /**
   * A majority should reflect the updated values
   */

  dbs[0].get('foo'); // 'bar'
  dbs[1].get('foo'); // 'bar'
  dbs[2].get('foo'); // 'bar'
});

License

(The MIT License)

Copyright (c) 2014 Calvin French-Owen <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.