- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
10 lines
467 B
JavaScript
10 lines
467 B
JavaScript
const {pathToFileURL} = require('url');
|
|
|
|
// Hack to avoid Module.runMain on node 18.6.0
|
|
// Keeping it simple for now, isolated in this file.
|
|
// Could theoretically probe `getFormat` impl to determine if `import()` or `Module._load()` is best
|
|
// Note that I attempted a try-catch around `Module._load`, but it poisons some sort of cache such that subsequent `import()` is impossible.
|
|
exports.run = function(entryPointPath) {
|
|
import(pathToFileURL(entryPointPath));
|
|
}
|