Released [v2.5.0]({{ less.master.url }}CHANGELOG.md)
Import JavaScript plugins to add Less.js functions and features
Using a @plugin
at-rule is similar to using an @import
for your .less
files.
@plugin "my-plugin"; // automatically appends .js if no extension
Since Less plugins are evaluated within the Less scope, the plugin definition can be quite simple.
registerPlugin({
install: function(less, pluginManager, functions) {
functions.add('pi', function() {
return Math.PI;
});
}
})
or you can use module.exports
(shimmed to work in browser as well as Node.js).
module.exports = {
install: function(less, pluginManager, functions) {
functions.add('pi', function() {
return Math.PI;
});
}
};
Note that other Node.js CommonJS conventions, like require()
are not available in the browser. Keep this in mind when writing cross-platform plugins.
What can you do with a plugin? A lot, but let's start with the basics. We'll focus first on what you might put inside the install
function. Let's say you write this:
// my-plugin.js
install: function(less, pluginManager, functions) {
functions.add('pi', function() {
return Math.PI;
});
}
// etc
Congratulations! You've written a Less plugin!
If you were to use this in your stylesheet:
@plugin "my-plugin";
.show-me-pi {
value: pi();
}
You would get:
.show-me-pi {
value: 3.141592653589793;
}
However, you would need to return a proper Less node if you wanted to, say, multiply that against other values or do other Less operations. Otherwise the output in your stylesheet is plain text (which may be fine for your purposes).
Meaning, this is more correct:
functions.add('pi', function() {
return new tree.Dimension(Math.PI);
});
Note: A dimension is a number with or without a unit, like "10px", which would be less.Dimension(10, "px")
. For a list of units, see the Less API.
Now you can use your function in operations.
@plugin "my-plugin";
.show-me-pi {
value: pi() * 2;
}
You may have noticed that there are available globals for your plugin file, namely a function registry (functions
object), and the less
object. These are there for convenience.
Functions added by a @plugin
at-rule adheres to Less scoping rules. This is great for Less library authors that want to add functionality without introducing naming conflicts.
For instance, say you have 2 plugins from two third-party libraries that both have a function named "foo".
// lib1.js
// ...
functions.add('foo', function() {
return "foo";
});
// ...
// lib2.js
// ...
functions.add('foo', function() {
return "bar";
});
// ...
That's ok! You can choose which library's function creates which output.
.el-1 {
@plugin "lib1";
value: foo();
}
.el-2 {
@plugin "lib2";
value: foo();
}
This will produce:
.el-1 {
value: foo;
}
.el-2 {
value: bar;
}
For plugin authors sharing their plugins, that means you can also effectively make private functions by placing them in a particular scope. As in, this will cause an error:
.el {
@plugin "lib1";
}
@value: foo();
As of Less 3.0, functions can return any kind of Node type, and can be called at any level.
Meaning, this would throw an error in 2.x, as functions had to be part of the value of a property or variable assignment:
.block {
color: blue;
my-function-rules();
}
In 3.x, that's no longer the case, and functions can return At-Rules, Rulesets, any other Less node, strings, and numbers (the latter two are converted to Anonymous nodes).
There are times when you may want to call a function, but you don't want anything output (such as storing a value for later use). In that case, you just need to return false
from the function.
var collection = [];
functions.add('store', function(val) {
collection.push(val); // imma store this for later
return false;
});
@plugin "collections";
@var: 32;
store(@var);
Later you could do something like:
functions.add('retrieve', function(val) {
return new tree.Value(collection);
});
.get-my-values {
@plugin "collections";
values: retrieve();
}
A Less.js plugin should export an object that has one or more of these properties.
{
/* Called immediately after the plugin is
* first imported, only once. */
install: function(less, pluginManager, functions) { },
/* Called for each instance of your @plugin. */
use: function(context) { },
/* Called for each instance of your @plugin,
* when rules are being evaluated.
* It's just later in the evaluation lifecycle */
eval: function(context) { },
/* Passes an arbitrary string to your plugin
* e.g. @plugin (args) "file";
* This string is not parsed for you,
* so it can contain (almost) anything */
setOptions: function(argumentString) { },
/* Set a minimum Less compatibility string
* You can also use an array, as in [3, 0] */
minVersion: ['3.0'],
/* Used for lessc only, to explain
* options in a Terminal */
printUsage: function() { },
}
The PluginManager instance for the install()
function provides methods for adding visitors, file managers, and post-processors.
Here are some example repos showing the different plugin types.
- post-processor: https://github.com/less/less-plugin-clean-css
- visitor: https://github.com/less/less-plugin-inline-urls
- file-manager: https://github.com/less/less-plugin-npm-import
While a @plugin
call works well for most scenarios, there are times when you might want to load a plugin before parsing starts.
See: Pre-Loaded Plugins in the "Using Less.js" section for how to do that.