0.3.0 • Published 8 years ago

authdb v0.3.0

Weekly downloads
-
License
MIT
Repository
-
Last release
8 years ago

AuthDB

Quick start

Install

npm install authdb

Example

var authdb = require("authdb");

var client = authdb.createClient({
    host: "127.0.0.1",
    port: 6379
});

client.getAccount(token, function(err, account) {
    if (err)
        console.dir(err);
    else
        console.dir(account);
});

client.addAccount(token, account, function(err, result) {
    if (err)
        console.dir(err);
    else
        console.dir(result);
});
0.3.0

8 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.1.0

9 years ago