# locked **Repository Path**: mirrors_samcday/locked ## Basic Information - **Project Name**: locked - **Description**: distributed consensus on a single value using etcd - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README locked ------ distributed consensus on a single value using [etcd](http://github.com/coreos/etcd) ## install ``` $ npm install locked ``` ## usage First create a locker that is pointing at some nodes of your etcd cluster ```js var locked = require('locked') // create a locker pointing with an etcd connection string var locker = locked('127.0.0.1:4001,127.0.0.1:4002') // create a node - this points to a single key and represents its value locked across the cluster var node = locker({ id:'node1', // this is auto-completed if left blank path:'/master', // the etcd path we use for the lock value:10 , // the value for this node ttl:10 // we will check the lock every (ttl/2) seconds }) // this is run when the values changes regardless of what node is elected node.on('change', function(value, nodeid){ console.log(value + ' was written by ' + nodeid) }) // this is run when this node has been selected node.on('selected', function(){ console.log('this server has been elected as the master!') }) // this starts the lock for this node node.start() ``` you can also pass an existing etcdjs object: ```js var etcdjs = require('etcdjs') var locker = locked(etcdjs('127.0.0.1:4001,127.0.0.1:4002')) ``` ## api #### `var locker = locked(etcdhosts)` Create a new locker pointing to some of the etcd servers in your cluster - `etcdhosts` can be an array or a single address string. #### `var node = locker(path, opts)` Create a node that represents a single key - other machines will have created nodes on the same path - they are all essentially competing. Opts has the following keys: * id - specify the id of this node manually, this is auto-generated if left blank * value - the value this node will write to the registry * ttl - the amount of seconds that each value is valid - the value is automatically refreshed every ttl/2 seconds #### `node.start()` Start the lock process for this node #### `node.stop()` Stop the lock process for this node #### `node.id()` Get the currently active id across the lock #### `node.value()` Get the currently active value across the lock #### `node.localid()` The id for this specific node #### `node.localvalue()` The value for this specific node #### `node.localdata()` The data string for this specific node This is id + ':::' + value #### `node.isSelected()` return boolean indicating if the node is currently the elected leader ## events #### `node.on('change', function(value, leaderid){})` This event is triggered when the lock value has changed regardless of which node was elected. The nodeid is of the elected machine is passed as the second argument. #### `node.on('select', function(value, leaderid){})` This event is triggered when the node has been elected and it's value distributed to the cluster. You can run logic in this function that should only be running on one server at a time. #### `node.on('refresh', function(value, leaderid){})` Triggered when the currently selected node has refreshed its value #### `node.on('ping', function(value, leaderid){})` Triggered when the leader has checked in and confirmed its leadership ## license MIT