gpt4 book ai didi

node.js - 强制要求检查模块的当前目录

转载 作者:太空宇宙 更新时间:2023-11-04 02:22:03 26 4
gpt4 key购买 nike

我正在使用 Node.js 创建一个命令行应用程序。如何让 require 检查模块的当前目录?

比如我想在testing目录下运行命令:

root@hello:~/projects/testing$ mycmd

并获取该目录的 node_modules/ 中的模块,而不是使用全局版本。

var myModule = require("testing/mymodule");

最佳答案

使用 process.cwd() 查找其当前目录,然后我可以从 node_modules/ 文件夹中获取依赖项。

/usr/local/lib/node_modules/mycmd/index.js:

require(process.cwd() + "/node_modules/request");

关于node.js - 强制要求检查模块的当前目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32828267/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com