lazy-cache NPM version NPM monthly downloads NPM total downloads Linux Build Status

Cache requires to be lazy-loaded when needed.

Install

Install with npm:

  1. $ npm install --save lazy-cache

Heads up!

It’s suprising how many libraries are in the average dependency tree that don’t belong there for one reason or another. Either because they were accidentally listed as dependencies instead of devDepedencies, or they are required in a file as variables, but the variable is never actually used (poor linting), and so on. Or because the maintainer made the decision to add the deps, even though they will never (or can’t ever) be used by 99.9% of users.

Worse, many libraries like chalk and shelljs actually execute code when require() is called!? (shelljs was modifying the String.prototype, and chalk loops over some objects to dynamically create methods). In other words, they do something like this:

  1. // in the main export of a library, if you do this it will
  2. // automatically modify the String.prototype _globally_,
  3. // the moment node.js loads the dependency tree
  4. String.prototype.foo = function() {};
  5. // same if you do something like this
  6. // (dont' do this, ever. wrap this kind of code in a function
  7. // and allow implementors to decide when to call it)
  8. while (foo) {
  9. // do stuff
  10. }

In any case, just having these libraries in your dependency tree somewhere means that their code will excecute the moment you run your application even if the libraries are never called by your application or any other code anywhere in the tree.

solution

lazy-cache doesn’t use any “magic”, it uses native, plain-vanilla, tried and true javascript getters to call node’s require() system.

Faster, safer code

There main advantage to this, the main is that requires are loaded on demand, so only code that is actually used will ever be loaded. As a result, applications will load faster (sometimes much faster - we’ve seen load times drop from ~1 second to less than 50 milliseconds).

Moreover, in some cases this also avoids inadvertently loading libraries that execute code or modifies globals, etc.

webpack users

If you use webpack and are experiencing issues with lazy-cache, this is a known bug caused by webpack, not lazy-cache. There is a solution though, you can use unlazy-loader, a webpack loader that fixes the webpack bug.

Usage

  1. var utils = require('lazy-cache')(require);

Use as a property on lazy

The module is also added as a property to the lazy function so it can be called without having to call a function first.

  1. var utils = require('lazy-cache')(require);
  2. // `npm install glob`
  3. utils('glob');
  4. // glob sync
  5. console.log(utils.glob.sync('*.js'));
  6. // glob async
  7. utils.glob('*.js', function (err, files) {
  8. console.log(files);
  9. });

Use as a function

  1. var utils = require('lazy-cache')(require);
  2. var glob = utils('glob');
  3. // `glob` is a now a function that may be called when needed
  4. glob().sync('foo/*.js');

Aliases

An alias may be passed as the second argument if you don’t want to use the automatically camel-cased variable name.

Example

  1. var utils = require('lazy-cache')(require);
  2. // alias `ansi-yellow` as `yellow`
  3. utils('ansi-yellow', 'yellow');
  4. console.log(utils.yellow('foo'));

Dot notation may also be used in the alias to create an object hierarchy.

Example

  1. var utils = require('lazy-cache')(require);
  2. utils('ansi-cyan', 'color.cyan');
  3. utils('ansi-yellow', 'color.yellow');
  4. utils('ansi-magenta', 'color.magenta');
  5. console.log(utils.color.cyan('foo'));
  6. console.log(utils.color.yellow('bar'));
  7. console.log(utils.color.magenta('baz'));

Browserify usage

Example

  1. var utils = require('lazy-cache')(require);
  2. // temporarily re-assign `require` to trick browserify
  3. var fn = require;
  4. require = utils;
  5. // list module dependencies (here, `require` is actually `lazy-cache`)
  6. require('glob');
  7. require = fn; // restore the native `require` function
  8. /**
  9. * Now you can use glob with the `utils.glob` variable
  10. */
  11. // sync
  12. console.log(utils.glob.sync('*.js'));
  13. // async
  14. utils.glob('*.js', function (err, files) {
  15. console.log(files.join('\n'));
  16. });

Kill switch

To force lazy-cache to immediately invoke all dependencies, do:

  1. process.env.UNLAZY = true;

About

Related projects

lint-deps: CLI tool that tells you when dependencies are missing from package.json and offers you a… more | homepage

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Contributors

Commits Contributor
31 jonschlinkert
27 doowb

Building docs

(This document was generated by verb-generate-readme (a verb generator), please don’t edit the readme directly. Any changes to the readme must be made in .verb.md.)

To generate the readme and API documentation with verb:

  1. $ npm install -g verb verb-generate-readme && verb

Running tests

Install dev dependencies:

  1. $ npm install -d && npm test

Author

Jon Schlinkert

License

Copyright © 2016, Jon Schlinkert. Released under the MIT license.


This file was generated by verb-generate-readme, v0.2.0, on November 07, 2016.