0.3.1 • Published 9 years ago

helper-resolve v0.3.1

Weekly downloads
59
License
MIT
Repository
github
Last release
9 years ago

helper-resolve NPM version Build Status

Template helper to resolve the path to a file in node_modules. This is mostly useful during development.

Refactored to return an object, so the results of the helper can be passed to other helpers that require more information.

Install with npm

npm i helper-resolve --save

Usage

var resolve = require('helper-resolve');
var Handlebars = require('handlebars');

handlebars.registerHelper('resolve', function (name, key) {
  return resolve.sync(fp)[typeof key === 'string' ? key : 'main'];
});
handlebars.compile('<script src=\"{{resolve "jquery" "main"}}\"></script>')().
//=> '<script src="node_modules/jquery/dist/jquery.js"></script>'

handlebars.compile('{{resolve "jquery" "homepage"}}')().
//=> 'http://jquery.com'

Assemble example

Register the helper with assemble v0.6.x to use with any template engine:

var assemble = require('assemble');
assemble.helper('resolve', function (name, key) {
  return resolve.sync(fp)[typeof key === 'string' ? key : 'main'];
});

async helper

assemble.asyncHelper('resolve', function (name, key, cb) {
  if (typeof key === 'function') {
    cb = key;
    key = 'main';
  }

  resolve(name, function (err, res) {
    cb(null, res[key]);
  });
});

Run tests

Install dev dependencies:

npm i -d && npm test

Contributing

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

Author

Jon Schlinkert

License

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


This file was generated by verb-cli on April 19, 2015.

0.3.1

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago