1.0.2 • Published 9 years ago
env-development v1.0.2
env-development 
Set $NODE_ENV to "development".
Works best with mocha --requireenv-development.
Why?
Because to force environment, I was used to add process.env.NODE_ENV = "development" at the beginning of every file.
Because relying on Makefile or package.json to set this environment is almost always OK, but when one user just throws mocha in his terminal we don't want to punish him with data loss or any other hell.
Whereas relying on mocha.opts makes it easy (no more ugly line in each test file) and reliable (always loaded).
Install
Install with npm:
npm install env-developmentUsage
With mocha
- Install with
npm install --save-dev env-development - Edit
test/mocha.optsand add the line--requir env-development
Related
Changelog
See Releases page.
Running tests
Install devDependencies and Run npm test:
npm i -d && npm testContributing
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D
Author
License
MIT © azu