es-dirname
v0.1.0
Published
Node.js module that returns the current script dirname. Similar to `__dirname` but also works in ES modules.
Downloads
77,055
Readme
es-dirname
Node.js module that returns the current script dirname. Similar to __dirname
but also works in ES modules.
Installation
yarn add es-dirname
Usage
/path/to/the/script.mjs
import dirname from 'es-dirname'
console.log(dirname()) // outputs "/path/to/the"
CommonJs
console.log(require('es-dirname')() === __dirname) // true