etcd
v0.0.3
Published
etcd client for node
Downloads
15
Readme
etcd-node
An alternative client library for interacting with etcd from node.js (without coffeescrpt). If you don't mind having coffeescript dependencies, there is already is a module for that.
Notice
This is not stable at all, I am writing this module as I learn about etcd, feel free to help!
Example
Write me...
var etcd = require('etcd');
etcd.set('hello', 'world');
etcd.get('hello', function (err, value) {
if (err) throw err;
console.log(value);
});
License
MIT