Blessing
Blessing is a CaaS (counter as a service). Its sole function is to increment a counter online.
Usage
var Blessing = require('blessing');
var bless = new Blessing("Blessing's Name", console.log, {
host: 'host.com',
path: '/path',
port: 80
});
bless.count();
bless.fetch(callback).then(res => {
}
}).catch(e => {});
IMPORTANT: Even though Blessing is an object, it stores its ID, which means you can only have one blessing per application.
Parameters
new Blessing(name);
new Blessing(logger);
new Blessing(params);
new Blessing(name, logger, params);
new Blessing(name, params);
new Blessing(logger, params);
Self Host
Blessing stores the counters at blessing.jocolina.com
, however you can host your own server here