Skip to content

Instantly share code, notes, and snippets.

@k3mlol
Created August 7, 2023 15:12
Show Gist options
  • Save k3mlol/162e7800e0310afbb9bd7f5ba7e26658 to your computer and use it in GitHub Desktop.
Save k3mlol/162e7800e0310afbb9bd7f5ba7e26658 to your computer and use it in GitHub Desktop.
Process.enumerateModules({
onMatch(module) {
console.log(`Loaded module: ${module.name} - ${module.path}`);
},
onComplete() {
console.log('Module enumeration complete');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment