Exact list of Node core modules

后端 未结 5 2054
一个人的身影
一个人的身影 2021-02-04 05:56

I am looking for a way to get an exact up-to-date list of all Node.js core modules. Is there an NPM module that supplies such a running list? Somewhere in the annals of my life

5条回答
  •  孤城傲影
    2021-02-04 06:22

    Execute this into your app:

    console.log ( require('repl')._builtinLibs ); return;
    

    to list all built-in modules.

提交回复
热议问题