gigo

0.0.2 • Public • Published

gigo

Garbage-in-garbage-out: Soviet-style storage.

description

gigo is a mostly key-value data store. you give it data, it will store it. gigo is "soviet-style storage" because it is very practical. it does not have a lot of bells and whistles and isn't terribly efficient or fast. it does what it says on the tin; no more, no less. in fact, gigo has only one bell or whistle, and that's its bind() method, which gives you the ability to create more complex relationships between data using simple JSON descriptor objects.

gigo is fast, because it is a node module backed by redis.

installation

npm install gigo

usage

(NOTE: this readme is a work in progress and the usage examples probably don't work)

gigo just needs to be required like any module:

var gigo = require("gigo");

gigo can be used for very simple storage:

gigo.set("name", "gigo");
console.log( "name is: " + gigo.get("name") );
// name is: gigo

it's aware of different kinds of data...

var result = {
    bar: 0,
    foo: true
};
gigo.set("serialized", result);
var restored = gigo.get("serialized");
if( restored.foo === true ) {
    console.log("foo is true!");
    // foo is true!
}
gigo.remove("serialized");
console.log( typeof( gigo.get("serialized") ) );
// undefined

...but it keeps to its original promise of returning what it was given:

var send = function( client ) {
    var pic = gigo.get("pic");
    // ... send to client via HTTP response or whatever
    client.send(pic);
};
var file = function( filename ) {
    fs.readFile(filename, function(err, data) {
        if (err) return console.log(err), err;
        gigo.set("pic", data);
    });
};

gigo pays attention when you describe relationships between things:

var file = function( filename, callback ) {
    fs.readFile(filename, function(err, data) {
        return typeof( callback ) === "function" && callback( err || null, data );
    });
};
var image = {
    name: "theme.jpg",
    data: null
};
file("theme.jpg", function(err, data) {
    if (!err) {
        gigo.set("/image/theme", data, function(err, hash) {
            if (!err) {
                gigo.bind(image.data, hash);
            }
        });
    }
})

gigo can do some complex things, despite its simple nature:

var file = function( filename, callback ) {
    fs.readFile(filename, function(err, data) {
        return typeof( callback ) === "function" && callback( err || null, data );
    });
};
var data = {
    files: ['index.html', 'site.js', 'default.css'],
    images: [],
    theme: false
};
var Image = function(filename) {
    filename: "theme.jpg",
    data: null
};
 
file("soundtrack.mp3", function( data ) {
    gigo.set("/presentation/theme", data);
    var 
    gigo.bind(data.theme)
});
file("background.jpg", function( data ) {
    gigo.set("/presentation/images/background", data);
});
file("logo.jpg", function( data ) {
    gigo.set("/presentation/images/logo", data);
});
 

tests

gigo uses mocha and chai:

npm test

contributors

contributions to gigo are welcome. however, changes which are mostly stylistic or semantic will not be accepted. if you submit a patch or pull request, please understand that accepting the changes may take time, at least until science invents 96-hour days.

license

licensed under gpl v3

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.2
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.2
    2
  • 0.0.1
    0

Package Sidebar

Install

npm i gigo

Weekly Downloads

2

Version

0.0.2

License

GPLv3

Last publish

Collaborators

  • curtiszimmerman