Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 552 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 552 Bytes

root-path

Normalize paths, joined with project's root path

NPM Version

NOTE: The directory with package.json is considered a project's root directory.

install

npm install --save root-path

usage

var root = require('root-path');

var x1 = root();
// returns {PROJECT_ROOT}

var x2 = root('path');
// returns {PROJECT_ROOT}/path

var x3 = root('path1', 'path2');
// returns {PROJECT_ROOT}/path1/path2