larvitutils
Misc utilities
Compability
Since v4.x this library is ECMA script module only, no support for CommonJS.
Loading of library
The library takes one parameter as option, "log". It is designed to take an instance of winston, but more exactly it should be an object with the methods "silly", "debug", "verbose", "info", "warn" and "error". An example of this can be found in the VERY simplified logging utility built in to this library. See documentation below.
Example of loading the library with no configured logger (using the default):
import { Utils } from 'larvitutils';
const utils = new Utils();
Example of loading the library with an instance of winston as logger:
import winston from 'winston';
import { Utils } from 'larvitutils';
const log = winston.createLogger({ 'transports': [new winston.transprots.Console()] });
const utils = new Utils({ log });
Changelog
Very summarized, see specific commits for more details
v5.0.0 - Updated dependency versions and fixed some TypeScript errors. Removed coveralls since it's dependent on deprecated packages.
v4.0.2 - Even stricter control of process not being set for some environments
v4.0.1 - Fixed bug where process.env.NODE_LOG_LVL was expected to be set in browsers if no log level was provided on instansiation
v4.0.0 - ECMA Module distribution, dropped support for CommonJS
v3.2.0 - Added getUniqueCombinations()
v3.0.4 - Rewrite to TypeScript. Different initialization of the library (Log is no longer part of Utils). Log() now require exactly 'none' for no log output. Random strings will no longer be accepted.
v2.0.0 - Rewrite to all tings being instanciated
Get unique combinations
Breaks up object with key-values to an array of all possible, unique key-values.
Example:
import { Utils } from 'larvitutils';
const utils = new Utils();
console.log(utils.getUniqueCombinations({
foo: ['bar', 'baz'],
buu: ['lenny', 'bosse']
}));
Async setTimeout
import { Utils } from 'larvitutils';
const utils = new Utils();
await utils.setTimeout(1000);
console.log('1000ms later');
Convert a buffer to an Uuid
import { Utils } from 'larvitutils';
const utils = new Utils();
const uuid = utils.formatUuid(new Buffer('f9684592b24542fa88c69f16b9236ac3', 'hex'));
console.log(uuid);
Example usecase: fetch a binary column from a database and convert to a readable Uuid string
Format a hex string to uuid
import { Utils } from 'larvitutils';
const utils = new Utils();
const uuid = utils.formatUuid(' f9684592b24542fa88c69f16b9236ac3');
console.log(uuid);
hrtimeToMs()
Used to convert hrtime() calls to milliseconds, since hrtime() output is messy (seconrds + nanoseconrds)
Usage:
import { Utils } from 'larvitutils';
const utils = new Utils();
const startTime = process.hrtime();
setTimeout(function() {
console.log('benchmark took %d ms', utils.hrtimeToMs(startTime, 4));
}, 34);
Uuid string to buffer
import { Utils } from 'larvitutils';
const utils = new Utils();
const uuidStr = 'f9684592-b245-42fa-88c6-9f16b9236ac3';
utils.uuidToBuffer(uuidStr);
Replace all for strings
import { Utils } from 'larvitutils';
const utils = new Utils();
const str = 'f9684592-b245-42fa-88c6-9f16b9236ac3';
utils.replaceAll('-', '_', str);
Validate an uuid string
import { Utils } from 'larvitutils';
const utils = new Utils();
const validUuid = 'f9684592-b245-42fa-88c6-9f16b9236ac3';
const invalidUuid1 = false;
const invalidUuid2 = 'foobar';
const invalidUuid3 = {höhö: 'oveboll'};
utils.formatUuid(validUuid);
utils.formatUuid(invalidUuid1);
utils.formatUuid(invalidUuid2);
utils.formatUuid(invalidUuid3);
Check if input is an int
import { Utils } from 'larvitutils';
const utils = new Utils();
utils.isInt(10);
utils.isInt(10.0);
utils.isInt(10.5);
utils.isInt('oveboll');
Simple logger
This is ment as a very simple replacement for winston
import { Log } from 'larvitutils';
const log = new Log();
log.info('Hello', { foo: 'bar' });
log.error('Hello');
By default only info, warn and error are printed to screen. Set minimum level by string, like this:
import { Log } from 'larvitutils';
const log = new Log('debug');
log.debug('Hello');
Or disable output entirely
import { Log } from 'larvitutils';
const log = new Log('none');
log.error('Hello');
The default log level can be changed by setting environment variable NODE_LOG_LVL
All logging methods: silly, debug, verbose, info, warn and error.