Alternative for __dirname in Node.js when using ES6 modules

As of Node.js 10.12 there’s an alternative that doesn’t require creating multiple files and handles special characters in filenames across platforms:

import { dirname } from 'path';
import { fileURLToPath } from 'url';

const __dirname = dirname(fileURLToPath(import.meta.url));

Leave a Comment