What is utile?
The 'utile' npm package is a utility library that provides a collection of useful functions for various common tasks in Node.js development. It includes features for deep cloning, merging objects, asynchronous flow control, and more.
What are utile's main functionalities?
Deep Cloning
The 'clone' function allows you to create a deep copy of an object, ensuring that nested objects are also cloned rather than referenced.
const utile = require('utile');
const obj = { a: 1, b: { c: 2 } };
const clone = utile.clone(obj);
console.log(clone); // { a: 1, b: { c: 2 } }
Merging Objects
The 'mixin' function merges properties from one or more objects into a target object, with later objects overwriting properties of earlier ones.
const utile = require('utile');
const obj1 = { a: 1, b: 2 };
const obj2 = { b: 3, c: 4 };
const merged = utile.mixin(obj1, obj2);
console.log(merged); // { a: 1, b: 3, c: 4 }
Asynchronous Flow Control
The 'async.parallel' function allows you to run multiple asynchronous tasks in parallel and collect their results once all tasks have completed.
const utile = require('utile');
const tasks = [
function (callback) { setTimeout(() => callback(null, 'one'), 200); },
function (callback) { setTimeout(() => callback(null, 'two'), 100); }
];
utile.async.parallel(tasks, function (err, results) {
console.log(results); // ['one', 'two']
});
Other packages similar to utile
lodash
Lodash is a modern JavaScript utility library delivering modularity, performance, and extras. It provides a wide range of utility functions for common programming tasks, including deep cloning, object merging, and more. Compared to 'utile', Lodash is more comprehensive and widely adopted.
async
The 'async' library provides powerful functions for working with asynchronous JavaScript. It includes utilities for managing asynchronous control flow, such as parallel, series, and waterfall execution. While 'utile' includes some async utilities, 'async' is more specialized and feature-rich in this area.
underscore
Underscore is a JavaScript library that provides a whole mess of useful functional programming helpers without extending any built-in objects. It offers similar utilities to 'utile' for object manipulation, array operations, and more. Underscore is older and less modular than Lodash but still widely used.
utile
A drop-in replacement for util
with some additional advantageous functions
Motivation
Javascript is definitely a "batteries not included language" when compared to languages like Ruby or Python. Node.js has a simple utility library which exposes some basic (but important) functionality:
$ node
> var util = require('util');
> util.
(...)
util.debug util.error util.exec util.inherits util.inspect
util.log util.p util.print util.pump util.puts
When one considers their own utility library, why ever bother requiring util
again? That is the approach taken by this module. To compare:
$ node
> var utile = require('./lib')
> utile.
(...)
utile.async utile.capitalize utile.clone utile.cpr utile.createPath utile.debug
utile.each utile.error utile.exec utile.file utile.filter utile.find
utile.inherits utile.log utile.mixin utile.mkdirp utile.p utile.path
utile.print utile.pump utile.puts utile.randomString utile.requireDir uile.requireDirLazy
utile.rimraf
As you can see all of the original methods from util
are there, but there are several new methods specific to utile
. A note about implementation: no node.js native modules are modified by utile, it simply copies those methods.
Methods
The utile
modules exposes some simple utility methods:
.each(obj, iterator)
: Iterate over the keys of an object..mixin(target [source0, source1, ...])
: Copies enumerable properties from source0 ... sourceN
onto target
and returns the resulting object..clone(obj)
: Shallow clones the specified object..capitalize(str)
: Capitalizes the specified str
..randomString(length)
: randomString returns a pseudo-random ASCII string (subset) the return value is a string of length ⌈bits/6⌉ of characters from the base64 alphabet..filter(obj, test)
: return an object with the properties that test
returns true on..args(arguments)
: Converts function arguments into actual array with special callback
, cb
, array
, and last
properties. Also supports optional argument contracts. See the example for more details..requireDir(directory)
: Requires all files and directories from directory
, returning an object with keys being filenames (without trailing .js
) and respective values being return values of require(filename)
..requireDirLazy(directoy)
: Lazily requires all files and directories from directory
, returning an object with keys being filenames (without trailing .js
) and respective values (getters) being return values of require(filename)
.
Packaged Dependencies
In addition to the methods that are built-in, utile includes a number of commonly used dependencies to reduce the number of includes in your package.json. These modules are not eagerly loaded to be respectful of startup time, but instead are lazy-loaded getters on the utile
object
Installation
Installing npm (node package manager)
curl http://npmjs.org/install.sh | sh
Installing utile
[sudo] npm install utile
Tests
All tests are written with vows and should be run with npm:
$ npm test
License: MIT