0.1.0 • Published 5 years ago

es-dirname v0.1.0

Weekly downloads
52
License
-
Repository
-
Last release
5 years ago

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