All Projects → fdaciuk → getmodule

fdaciuk / getmodule

Licence: other
Include local NodeJS modules relative to your root path

Programming Languages

javascript
184084 projects - #8 most used programming language

Get Module

Include local NodeJS modules relative to your root path

Get Module

NPM version Build Status Coverage Status Code Climate

NPM

Installation

npm i --save getmodule

Usage

Add getmodule on top of your app.js (or main file of your app):

require( 'getmodule' );

Now, you can call any module based on root path of your application.

If your module is on app/modules/mymodule.js, but you're calling it on the file app/controllers/controller.js; in tradicional mode, you needed to do:

var mymodule = require( '../modules/mymodule' );

But with getmodule, you just need type this:

var mymodule = getmodule( 'app/modules/mymodule' );

Contributing

Check CONTRIBUTING.md

License

MIT License © Fernando Daciuk

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].