![Folquire banner](https://github.com/gabrielrufino/folquire/raw/HEAD/./assets/folquire.png)
Folquire
Requires all the modules from a folder
Getting started
To install run this command:
$ npm install folquire
Let's see an example. Suppose we have the following folder structure:
+-- math
| +-- add.js
| +-- subtract.js
| +-- multiply.js
| +-- divide.js
+-- index.js
index.js
'use strict'
const folquire = require('folquire')
const math = folquire(__dirname + '/math')
math.add(1, 2)
math.subtract(8, 4)
math.multiply(6, 7)
math.divide(20, 10)
Async folquire
index.js
'use strict'
const folquire = require('folquire')
folquire(__dirname + '/math')
.then(math => {
math.add(1, 2)
math.subtract(8, 4)
math.multiply(6, 7)
math.divide(20, 10)
})
Ignore modules
'use strict'
const folquire = require('folquire')
const modules = folquire(__dirname + '/math', {
ignore: ['add.js']
})