relative-path

1.1.0 • Public • Published

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

Package Sidebar

Install

npm i relative-path

Weekly Downloads

19

Version

1.1.0

License

MIT

Last publish

Collaborators

  • andineck