node.js provides lower layer V8 options too. These options are very low layer like garbage collection or heap algo.
# node --v8-options
Options:
--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
Although I can see most of them are not meant for frequent use.
If I see some option useful, can I use them safely without any fear of code change in V8 engine release upgrade?