Skip to content

Instantly share code, notes, and snippets.

@maxgfr
Last active April 26, 2022 15:37
Show Gist options
  • Save maxgfr/a1295acfbe81dee1d3ae727d5ad826ab to your computer and use it in GitHub Desktop.
Save maxgfr/a1295acfbe81dee1d3ae727d5ad826ab to your computer and use it in GitHub Desktop.
__dirname for es module
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
console.log(__dirname)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment