File cache plugin for browserify.
Basically, this is just watchify without the file watch mode! Use this plugin if you're already listening for file system events via something like gulp-watch or chokidar, and only want the caching mechanism of watchify for fast builds.
Installation
Install the package with NPM:
$ npm install rememberify
Usage
Register the plugin with a browserify instance:
;; let b = ;
When you receive a file system event, simply invalidate the cache:
rememberify;
Tip
Using rememberify with gulp-watch is easy. Here's a full example:
;;;;; let b = ; gulp; gulp;