node --v8-options | grep harmony
--es_staging (enable all completed harmony features)
--harmony (enable all completed harmony features)
--harmony_shipping (enable all shipped harmony fetaures)
--harmony_modules (enable "harmony modules" (in progress))
--harmony_regexps (enable "harmony regular expression extensions" (in progress))
--harmony_proxies (enable "harmony proxies" (in progress))
--harmony_sloppy_function (enable "harmony sloppy function block scoping" (in progress))
--harmony_sloppy_let (enable "harmony let in sloppy mode" (in progress))
--harmony_unicode_regexps (enable "harmony unicode regexps" (in progress))
--harmony_reflect (enable "harmony Reflect API" (in progress))
--harmony_destructuring (enable "harmony destructuring" (in progress))
--harmony_default_parameters (enable "harmony default parameters" (in progress))
--harmony_sharedarraybuffer (enable "harmony sharedarraybuffer" (in progress))
--harmony_atomics (enable "harmony atomics" (in progress))
--harmony_simd (enable "harmony simd" (in progress))
--harmony_array_includes (enable "harmony Array.prototype.includes")
--harmony_tostring (enable "harmony toString")
--harmony_concat_spreadable (enable "harmony isConcatSpreadable")
--harmony_rest_parameters (enable "harmony rest parameters")
--harmony_sloppy (enable "harmony features in sloppy mode")
--harmony_arrow_functions (enable "harmony arrow functions")
--harmony_new_target (enable "harmony new.target")
--harmony_object_observe (enable "harmony Object.observe")
--harmony_spreadcalls (enable "harmony spread-calls")
--harmony_spread_arrays (enable "harmony spread in array literals")
--harmony_object (enable "harmony Object methods")
node.js附带了许多默认禁用的功能(因为它们仍在开发中或处于暂存状态)。 --harmony
标志启用所有已完成的功能。
如何启用所有"正在进行中"特征
答案 0 :(得分:2)
您可以使用
查看当前“正在进行中”的标记node --v8-options | grep "in progress"
此帖子的输出看起来像
--harmony_modules (enable "harmony modules" (in progress))
--harmony_array_includes (enable "harmony Array.prototype.includes" (in progress))
// ...
// (I've removed the other lines, which look like the above)
因此,您可以轻松解析它以满足您的需求。
关于主题:https://nodejs.org/en/docs/es6/#which-features-are-in-progress
答案 1 :(得分:1)
使用和声标志时,无法直接使用“进行中”标志。功能“正在进行中”使用“--harmony”标志本身。 如果您想了解正在运行的功能
节点--v8-options | grep“进行中”
使用命令时的大多数标志
节点--v8-options | grep和谐
是“正在进行中”,除非默认情况下已启用。验证运送的将运行
节点--v8-options | grep -A1和谐
如果默认显示为true,那么它应该正常工作