esm-consts
v1.0.0
Published
work with esm __filepath and __dirname pathing constants in imports as in commonjs nodejs environment
Downloads
4
Maintainers
Readme
esm-consts
work with esm __filepath and __dirname pathing constants in imports as in commonjs nodejs environment
Demos can be found in the folder demos
USAGE:
import { getDirname, getFilename } from "./node_module/esm-constants/src/polyfill.__dirname.regex.js";
import { default as getpaths } from "esm-consts";
const __dirname = getDirname();
console.log(__dirname);
const __filename = getFilename();
console.log(__filename);