Dirname in ES modules
Node.js 20.11+
Section titled “Node.js 20.11+”const __dirname = import.meta.dirname;Node.js 10.12+
Section titled “Node.js 10.12+”import { dirname } from "node:path";import { fileURLToPath } from "node:url";
const __dirname = dirname(fileURLToPath(import.meta.url));