有没有Node.js的标志列表?

我试图findNode.js接受的所有标志列表,特别是那些用于ES6-Harmony特征的列表,但是我找不到任何标志。 有没有这样的事情?

运行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 

如果你从shell使用--help开关到节点,你会得到一个可用的标志列表;

 node --help