1.1.0 • Published 8 years ago

relative-path v1.1.0

Weekly downloads
46
License
MIT
Repository
github
Last release
8 years ago

relative-path

returns the absolute path for a given relative path

it's just a tiny helper function:

function getAbsolutePath() {
  var dir = path.dirname(module.parent.filename);
  var pathArgs = [dir].concat(Array.prototype.splice.call(arguments, 0));
  return path.join.apply(path, pathArgs);
};

install

npm install --save relative-path

use

var p = require('relative-path');

// will return the resolved absolute path.
p('./views/login.ejs');

// or
p('./views', 'login.ejs')

license

MIT