Reads and caches the entire contents of a file until it is modified
npm install read-cache
$ npm i read-cache
`
Usage
`js
// foo.js
var readCache = require('read-cache');
readCache('foo.js').then(function (contents) {
console.log(contents);
});
``