Skip to content

Instantly share code, notes, and snippets.

@nichoth
Last active November 11, 2023 08:05
Show Gist options
  • Save nichoth/5f4a3c06c5c643fa76a00d7a66ff261c to your computer and use it in GitHub Desktop.
Save nichoth/5f4a3c06c5c643fa76a00d7a66ff261c to your computer and use it in GitHub Desktop.
__dirname in module
import path from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
@nichoth
Copy link
Author

nichoth commented Nov 11, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment