1.0.0 • Published 9 years ago

eriuqer v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

eriuqer

Another way to require?

var r = require('eriuqer');

// require 1
var x = r('path');

// require a whole bunch async

r([
    'path',
    'util',
    'os',
    'test'
], function (path, util, os, test) {
    console.log(util.format('Working Directory: [%s]', path.dirname(process.argv[1])));
    console.log(util.format('Host: [%s]', os.hostname()));
    console.log(util.format('Who? %s', test.who()));
});