Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 564 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 564 Bytes

GitHub package.json version npm bundle size GitHub Workflow Status NPM

lup-root

Node module that determines absolute path to project root and main file of project

Example

const {ROOT, MAIN} = require('lup-root');

console.log("Root directory: " + ROOT);
console.log("Main file: " + MAIN);