Is there anyway to force using strict mode in Node.js? Technology Community › Category: JavaScript › Is there anyway to force using strict mode in Node.js? 0 Vote Up Vote Down VietMX Staff asked 4 years ago you can place "use strict"; at the top of your file in node >= 0.10.7, but if you want your whole app to run in strict (including external modules) you can do this node --use_strict