It's just another node module, which is intended to perform common functionalities used by developers, more easier.
Installation
npm install dev-utils
Usage
You can just instantiate the module and call the functions whereever applicable.
var dev = require('dev-utils');
dev.date();
dev.today();
dev.random(10);
dev.uppercase('hello');
dev.lowercase('HeLLo');
dev.makeobject(someobject);
dev.decamelize('thisIsCamel');
dev.defined(a, b, c...);
dev.thisToArray('somestring');
dev.unique([1,3,5,22,3,5]);
dev.permutate(['aa','b','c'],[1,23,6,7],['p','q']);
Installing dev-utils
[sudo] npm install dev-utils