requirelib
v0.0.2
Published
Requires libraries from ./lib or ./lib-cov
Downloads
12
Readme
requirelib
Uses internally node require
function but it's relative to your lib
folder or if you're building a code coverage report from ypur lib-cov
folder.
Install
$ npm install requirelib
Usage
var requirelib = require('requirelib')
, override = requirelib('a') // ./lib/a
, override = requirelib('b/c') // ./lib/b/c
Uses ./lib
$ node server.js
Uses ./lib-cov
$ node server.js --coverage
Coverage with mocha, uses ./lib-cov
$ @NODE_ENV=test mocha test/*.test.js --coverage --reporter spec
How to contribute
This library follows (more or less) the Felix's Node.js Style Guide, your contribution must be consistent with this style.
The test suite is written on top of visionmedia/mocha and it took hours of hard work. Please use the tests to check if your contribution is breaking some part of the library and add new tests for each new feature.
$ npm test
and for your test coverage
$ make test-cov
License
This software is released under the MIT license cited below.
Copyright (c) 2013 Kilian Ciuffolo, [email protected]. All Rights Reserved.
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the 'Software'), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.