我正在尝试查找Node.js接受的所有标志的列表,特别是那些用于ES6-Harmony功能的标志,但我找不到任何标志。有这样的吗?
答案 0 :(得分:21)
运行node --v8-options
。这会显示您可以设置的各种标志,以更改V8的行为
E.g。和声特征的标志出现在那里:
--harmony_typeof (enable harmony semantics for typeof)
type: bool default: false
--harmony_proxies (enable harmony proxies)
type: bool default: false
--harmony_weakmaps (enable harmony weak maps)
type: bool default: false
--harmony_block_scoping (enable harmony block scoping)
type: bool default: false
答案 1 :(得分:6)
如果从shell中将--help
开关应用于节点,您将获得可用标志的列表;
node --help