loader-cache
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
loaders.register('yaml', function(fp) {
return YAML.safeLoad(fp);
});
loaders.register('read', function(fp) {
return fs.readFileSync(fp, 'utf8');
});
loaders.register('yml', ['read', 'yaml']);
loaders.load('config.yml');
Run tests
npm test
Usage
var loaders = require('loader-cache');
API
Create a new instance of Loaders
var Loaders = require('loader-cache');
var loaders = new Loaders();
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
loaders.register('yaml', function(fp) {
return YAML.safeLoad(fp);
});
loaders.register('read', function(fp) {
return fs.readFileSync(fp, 'utf8');
});
loaders.register('yml', ['read', 'yaml']);
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
loaders.registerAsync('yaml', function(fp, next) {
next(null, YAML.safeLoad(fp));
});
loaders.registerAsync('read', function(fp, next) {
fs.readFile(fp, 'utf8', next);
});
loaders.registerAsync('yml', ['read', 'yaml']);
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
loaders.registerPromise('yaml', function(fp) {
var Promise = require('bluebird');
var deferred = Promise.pending();
process.nextTick(function () {
deferred.fulfill(YAML.safeLoad(fp));
});
return deferred.promise;
});
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;
});
loaders.registerPromise('yml', ['read', 'yaml']);
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
loaders.registerStream('yaml', es.through(function(fp) {
this.emit('data', YAML.safeLoad(fp));
});
loaders.registerStream('read', function(fp) {
fs.readFile(fp, 'utf8', function (err, content) {
this.emit('data', content);
});
});
loaders.registerStream('yml', ['read', 'yaml']);
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
.
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
loaders.load('config.yml');
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.done
{Function}: Callback to indicate loading has finishedreturns
: {String}
Example
loaders.loadAsync('config.yml', function (err, obj) {
});
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
loaders.loadPromise('config.yml')
.then(function (results) {
});
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
loaders.LoadStream('config.yml')
.pipe(foo())
.on('data', function (results) {
});
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 02, 2014.