Node.js 自己的依赖项(V8、libuv)位于本地哪里?
Where is Node.js own dependencies (V8, libuv) located locally?
我查看了Node.js的文档:
"Node.js includes a number of other statically linked libraries including OpenSSL. These other libraries are located in the deps/ directory in the Node.js source tree."
我安装了 Node.js 并检查了目录程序 files/nodejs,但找不到 deps/directory? V8、libuv 存储在我的本地文件中的什么位置?
Node 是一个程序,其中 C/C++、它使用的静态库(例如 libuv)和它使用的各种其他资源被编译成 node.exe
(在 Windows 上) .所以,你问的事情在 node.exe.
里面
当您只安装可运行版本的 nodejs 时,它们不会单独出现在您的文件系统中。
如果您克隆源存储库并自己构建它,您将拥有本地源存储库中的所有组件,然后将这些组件编译到 node.exe 中。但是,如果你安装一个已经构建的 nodejs 版本,那么你只会得到已经内置了组件的二进制可执行文件。
我查看了Node.js的文档:
"Node.js includes a number of other statically linked libraries including OpenSSL. These other libraries are located in the deps/ directory in the Node.js source tree."
我安装了 Node.js 并检查了目录程序 files/nodejs,但找不到 deps/directory? V8、libuv 存储在我的本地文件中的什么位置?
Node 是一个程序,其中 C/C++、它使用的静态库(例如 libuv)和它使用的各种其他资源被编译成 node.exe
(在 Windows 上) .所以,你问的事情在 node.exe.
当您只安装可运行版本的 nodejs 时,它们不会单独出现在您的文件系统中。
如果您克隆源存储库并自己构建它,您将拥有本地源存储库中的所有组件,然后将这些组件编译到 node.exe 中。但是,如果你安装一个已经构建的 nodejs 版本,那么你只会得到已经内置了组件的二进制可执行文件。