Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Could not find this answer anywhere, but I did find several mailing lists where this was discussed, these are rather old however and I have no idea if this is implemented or not.

Is there anyway to force using strict mode in node.js?

Writing "use strict"; in all my .js files... well, i prefer it being forced to using strict mode, rather than adding extra boilerplate.

share|improve this question

4 Answers

up vote 23 down vote accepted

They must have added this recently but you can do this

node --use_strict
share|improve this answer
eek: fs.js:1497 function emit() { ^^^^^^^^ SyntaxError: In strict mode code, functions can only be declared at top level or immediately within another function. – j03m Jan 17 at 19:53
2  
yea that was sort of my point, it's in fs. – j03m Jan 18 at 21:28
1  
oh O_o, so you cant use the filesystem if you force strict? which version of node are you using, im not getting this on v0.8.12 – Chad Scira Jan 18 at 22:38
1  
'v0.8.16' <--- hmm odd. Let me go verify. – j03m Jan 22 at 16:36
5  
In node v0.9.x and newer the --use_strict flag works as expected. – TooTallNate Feb 5 at 5:52
show 3 more comments

No.

There was some discussion about whether to implement this into node or not in the google group.

https://groups.google.com/group/nodejs/browse_thread/thread/c3e92141ff84cedf/29d83ffb2e143040?lnk=gst&q=strict+mode#29d83ffb2e143040

share|improve this answer
3  
Looks like this answer is out of date... – UpTheCreek Apr 17 at 8:43

You can also provide the strict flag on the shebang interpreter directive.

#!/usr/bin/env node --use_strict

But currently (at least pre v0.9.x) it suffers the same problems described by the comments in @chad-scira's answer discuss.

share|improve this answer

In node 0.10.7 you can enforce strict mode at file level by placing "use strict"; at the top of your file. Finally!

share|improve this answer
1  
Finally :) Too bad I can only mark one answer :( – Robin Heggelund Hansen 13 hours ago

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.