Make your Node programs strict about stuff
This is a collection of "Node Commandments"
process.exit. Let programs end gracefully,
or throw an error to indicate failure."use strict" mode, and respect its
requirements.require.extension at run time, or rely on
its modification by other modules.require('node-strict')
That's it. Now node is in super strict mode.