A micro helper for `import.meta` data
npm install umeta 
A _micro_ helper for import.meta data.
``js
import umeta from 'umeta';
const {dirName, fileName, require} = umeta(import.meta);
`
The dirName and fileName respectively represent __dirname and __filename, while the require utility helps importing conditionally, or on demand, CommonJS friendly modules.
There are at least two options:
* ascjs, based on @babel/parser@babel/core
* ucjs, based on and with minimal dependencies (compatible with dynamic import(...)` too)