For those who received the same question, you can use
std::string flags("--harmony_proxies"); V8::SetFlagsFromString(flags.c_str(), flags.length());
Also see node --v8-options for a complete list of v8 options, a lot of interesting node --v8-options !
for example, I also needed the --expose_gc flag to debug v8 garbage collection
source share