# less.js
**Repository Path**: mirrors_andreyvit/less.js
## Basic Information
- **Project Name**: less.js
- **Description**: Leaner CSS, in your browser.
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-08
- **Last Updated**: 2026-01-24
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
less.js
=======
about
-----
less.js is the next evolution of [LESS](http://lesscss.org), eventually, it will become LESS 2.0.
less.js is a complete rewrite of LESS in JavaScript, and will be able to run directly in the browser,
as well as on the server, with node.js.
where do I get it?
------------------
The latest builds are in the `dist/` folder.
synopsis
--------
### in node.js
var less = require('less');
less.render(".class { width: 10px * 2 }", function (e, css) {
sys.puts(css); // .class { width: 20px }
});
### via the command-line (requires node)
bin/lessc style.less
### in the browser
Get the pre-built version from the `dist/` folder, and include it as such:
Note the `rel="stylesheet/less"` for all stylesheets you want to parse with LESS.
installation
------------
In node:
$ npm install less