Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

mjs-dirname

stefanpenner79MIT1.0.0

Less verbose way to get a files __dirname and __filename in mjs files. Alternatively, one could use thrown exceptions in the helper methods to avoid providing import.meta.url as an argument, but I would prefer to avoid that. The result is as follows:

readme

mjs-dirname CI

Less verbose way to get a files __dirname and __filename in mjs files. Alternatively, one could use thrown exceptions in the helper methods to avoid providing import.meta.url as an argument, but I would prefer to avoid that. The result is as follows:

Usage

yarn add mjs-dirname
import { dirname, filename } from 'mjs-dirname';

const __dirname = dirname(import.meta.url);
const __filename = filename(import.meta.url);