nodemon中的选项“ -r”是什么?

时间:2018-12-21 06:45:36

标签: node.js nodemon

Nodemon选项文档未对此提及任何内容。关于选项-r,我无处可寻。

为您提供一些背景信息,here is where it is being used

更新

回答此问题后,随后弹出另一个问题:为什么要使用它?已经有一个未回答的问题here

2 个答案:

答案 0 :(得分:2)

-r不是nodemon,而是node选项。

节点--help说:

-r, --require=... module to preload (option can be repeated)

在您的示例中,它是“预加载” dotenv-safe/config

答案 1 :(得分:1)

您可以使用--help或以下列表找到nodemon CLI选项:

https://github.com/remy/nodemon/blob/master/doc/cli/options.txt

碰巧,您引用的-r实际上是一个 nodeJS 参数,而不是nodemon。

node --help

  

-r,--require模块进行预加载(选项可以重复)