🚀 Launch Week Day 4:Introducing the Alert Details Page: A Better Way to Explore Alerts.Learn More →
Socket
Book a DemoInstallSign in
Socket

load-less-helpers

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

load-less-helpers

register helper functions that can be used with LESS, the same way that handlebars helpers are used in templates.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

load-less-helpers NPM version NPM monthly downloads NPM total downloads Linux Build Status

register helper functions that can be used with LESS, the same way that handlebars helpers are used in templates.

Install

Install with npm:

$ npm install --save load-less-helpers

Usage

var less = require('less');
var register = require('load-less-helpers')(less);

Registering helpers

Register a single helper

Example assets helper, that might be used for dynamically calculating the path to a project's assets directory, relative to the css file's destination.

register.helper('assets', function (path) {
  return 'dist/' + path.value + '/assets/css';
});

Register multiple helpers

register.helpers({
  assets: function (path) {
    return 'dist/' + path.value + '/assets/css';
  },
  foo: function () {},
  bar: function () {}
});

Using helpers

Example of how to use the assets helper we just created above:

@theme: "blah";
@assets: assets("@{theme}");

.image {
  background: url("@{assets}/bar.png");
}

Results in:

.image {
  background: url("dist/blah/assets/css/bar.png");
}

Properties

The following properties are exposed on the this object:

  • options: Any options passed to render are exposed on this object
  • less: the less object

Example

register.helper('assets', function (path) {
  return path.join(path.value, this.options.assets);
});

About

Contributing

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

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

Install dev dependencies:

$ npm install && npm test

Author

Jon Schlinkert

License

Copyright © 2017, Jon Schlinkert. MIT

This file was generated by verb-generate-readme, v0.4.2, on January 29, 2017.

Keywords

functions

FAQs

Package last updated on 29 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts