JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1193
  • Score
    100M100P100Q97281F

Register loader functions that dynamically read, parse or otherwise transform file contents when the name of the loader matches a file extension. You can also compose loaders from other loaders.

Package Exports

  • loader-cache

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (loader-cache) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

loader-cache NPM version

Register loader functions that dynamically read, parse or otherwise transform file contents when the name of the loader matches a file extension. You can also compose loaders from other loaders.

Install

Install with npm

npm i loader-cache --save

Example

// register a loader for parsing YAML
loaders.register('yaml', function(fp) {
  return YAML.safeLoad(fp);
});

// register a loader to be used in other loaders
loaders.register('read', function(fp) {
  return fs.readFileSync(fp, 'utf8');
});

// create a new loader from the `yaml` and `read` loaders.
loaders.register('yml', ['read', 'yaml']);

// the `.load()` method calls any loaders registered
// to the `ext` on the given filepath
loaders.load('config.yml');

Run tests

npm test

Usage

var loaders = require('loader-cache');

API

Loaders

Create a new instance of Loaders

var Loaders = require('loader-cache');
var loaders = new Loaders();

.loaderTypes

Array of supported loader types as a convenience for creating utility functions to dynamically choose loaders. Currently supported types are:

  • sync
  • async
  • promise
  • stream

.register

Register the given loader callback fn as ext. Any arbitrary name can be assigned to a loader, however, the loader will only be called when either: a. ext matches the file extension of a path passed to the .load() method, or b. ext is an arbitrary name passed on the loader stack of another loader. Example below.

  • ext {String|Array}: File extension or name of the loader.
  • fn {Function|Array}: A loader function, or create a loader from other others by passing an array of names.
  • returns {Object} Loaders: to enable chaining

Examples

// register a loader for parsing YAML
loaders.register('yaml', function(fp) {
  return YAML.safeLoad(fp);
});

// register a loader to be used in other loaders
loaders.register('read', function(fp) {
  return fs.readFileSync(fp, 'utf8');
});

// create a new loader from the `yaml` and `read` loaders.
loaders.register('yml', ['read', 'yaml']);

.registerAsync

Register the given async loader callback fn as ext. Any arbitrary name can be assigned to a loader, however, the loader will only be called when either: a. ext matches the file extension of a path passed to the .load() method, or b. ext is an arbitrary name passed on the loader stack of another loader. Example below.

  • ext {String|Array}: File extension or name of the loader.
  • fn {Function|Array}: A loader function with a callback parameter, or create a loader from other others by passing an array of names.
  • returns {Object} Loaders: to enable chaining

Examples

// register an async loader for parsing YAML
loaders.registerAsync('yaml', function(fp, next) {
   next(null, YAML.safeLoad(fp));
});

// register a loader to be used in other loaders
loaders.registerAsync('read', function(fp, next) {
  fs.readFile(fp, 'utf8', next);
});

// create a new loader from the `yaml` and `read` loaders.
loaders.registerAsync('yml', ['read', 'yaml']);

.registerPromise

Register the given promise loader callback fn as ext. Any arbitrary name can be assigned to a loader, however, the loader will only be called when either: a. ext matches the file extension of a path passed to the .load() method, or b. ext is an arbitrary name passed on the loader stack of another loader. Example below.

  • ext {String|Array}: File extension or name of the loader.
  • fn {Function|Array}: A loader function that returns a promise, or create a loader from other others by passing an array of names.
  • returns {Object} Loaders: to enable chaining

Examples

var Promise = require('bluebird');

// register an promise loader for parsing YAML
loaders.registerPromise('yaml', function(fp) {
   var deferred = Promise.pending();
   process.nextTick(function () {
     deferred.fulfill(YAML.safeLoad(fp));
   });
   return deferred.promise;
});

// register a loader to be used in other loaders
loaders.registerPromise('read', function(fp) {
   var Promise = require('bluebird');
   var deferred = Promise.pending();
   fs.readFile(fp, 'utf8', function (err, content) {
     deferred.fulfill(content);
   });
   return deferred.promise;
});

// create a new loader from the `yaml` and `read` loaders.
loaders.registerPromise('yml', ['read', 'yaml']);

.registerStream

Register the given stream loader callback fn as ext. Any arbitrary name can be assigned to a loader, however, the loader will only be called when either: a. ext matches the file extension of a path passed to the .load() method, or b. ext is an arbitrary name passed on the loader stack of another loader. Example below.

  • ext {String|Array}: File extension or name of the loader.
  • fn {Stream|Array}: A stream loader, or create a loader from other others by passing an array of names.
  • returns {Object} Loaders: to enable chaining

Examples

// register an stream loader for parsing YAML
loaders.registerStream('yaml', es.through(function(fp) {
  this.emit('data', YAML.safeLoad(fp));
});

// register a loader to be used in other loaders
loaders.registerStream('read', function(fp) {
  fs.readFile(fp, 'utf8', function (err, content) {
    this.emit('data', content);
  });
});

// create a new loader from the `yaml` and `read` loaders.
loaders.registerStream('yml', ['read', 'yaml']);

.createTypeStack

  • loaders {Array}: Names of stored loaders to add to the stack.
  • type=sync {String}
  • returns {Array}: Array of loaders

Create a loader stack of the given type from an array of loaders.

.load

Run loaders associated with ext of the given filepath.

  • fp {String}: File path to load.
  • options {String}: Options to pass to whatever loaders are defined.
  • returns: {String}

Example

// this will run the `yml` loader from the `.compose()` example
loaders.load('config.yml');

.loadAsync

Run async loaders associated with ext of the given filepath.

  • fp {String}: File path to load.
  • options {Object}: Options to pass to whatever loaders are defined.
  • cb {Function}: Callback to indicate loading has finished
  • returns: {String}

Example

// this will run the `yml` async loader from the `.compose()` example
loaders.loadAsync('config.yml', function (err, obj) {
  // do some async stuff
});

.loadPromise

Run promise loaders associated with ext of the given filepath.

  • fp {String}: File path to load.
  • options {Object}: Options to pass to whatever loaders are defined.
  • returns {Promise}: a promise that will be fulfilled later

Example

// this will run the `yml` promise loader from the `.compose()` example
loaders.loadPromise('config.yml')
  .then(function (results) {
    // do some promise stuff
  });

.loadStream

Run stream loaders associated with ext of the given filepath.

  • fp {String}: File path to load.
  • options {Object}: Options to pass to whatever loaders are defined.
  • returns {Stream}: a stream that will be fulfilled later

Example

// this will run the `yml` stream loader from the `.compose()` example
loaders.LoadStream('config.yml')
  .pipe(foo())
  .on('data', function (results) {
    // do stuff
  });

Contributing

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

Author

Jon Schlinkert

License

Copyright (c) 2014 Jon Schlinkert
Released under the MIT license


This file was generated by verb on December 03, 2014.