我正在尝试查找 Node.js 接受的所有标志的列表,特别是那些用于 ES6-Harmony 功能的标志,但我找不到任何标志。有这样的吗?
问问题
13821 次
2 回答
25
运行node --v8-options
。这显示了您可以设置以更改 V8 行为的各种标志
例如,和谐特征的标志出现在那里:
--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
于 2012-06-09T23:22:09.010 回答
9
如果您--help
从 shell 将 switch 应用到 node,您将获得可用标志的列表;
node --help
于 2012-09-11T04:39:00.300 回答