navd

1.0.1 • Public • Published

navd

Navigate through directories easily.

Installation

npm install navd --save

Usage

const fs = require("fs");
const navd = require("navd");
 
// ../../../../../../../../file.txt
fs.readFile(navd.up(8, "file.txt"), "utf8", (err, data) => {
    // Code here
});
 
// ../../../../../../../../folder/file.txt
fs.readFile(navd.up(8, "folder/file.txt"), "utf8", (err, data) => {
    // Code here
});

Tests

npm test

License

MIT

Dependents (0)

Package Sidebar

Install

npm i navd

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • ifvictr