Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to find a list of all flags that Node.js accepts, specially those for ES6-Harmony features, but I can't find any. Is there anything like this?

share|improve this question

2 Answers

up vote 3 down vote accepted

Run node --v8-options. That displays the various flags you can set to change the behavior of V8

E.g. The flags for the harmony features show up in there:

 --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
share|improve this answer
Fantastic! Thanks! – juandopazo Jun 19 '12 at 13:50

If you apply the --help switch to node from the shell, you'll get a list of available flags;

node --help
share|improve this answer
Did you consider filling the remaining characters with useful information rather than crap? Such as an simple preface like "If you apply the --help switch to node from the shell, you'll get a list of available flags". Not hard I know. – Matt Sep 13 '12 at 22:47
:) next time i will just not answer. you know, i like it short and informative – foo Sep 21 '12 at 1:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.