Go to file
2010-06-06 18:26:38 -04:00
benchmark (test) made benchmark more realistic 2010-05-18 19:48:52 -04:00
bin improve error reporting, include filename 2010-06-04 13:28:38 -04:00
build cleanup ecma-5.js 2010-05-26 13:37:53 -04:00
lib/less (new) auto stylesheet refreshing with '#!refresh' 2010-06-06 18:23:55 -04:00
test fix optimizations, and errors on multi-line comments 2010-06-01 21:21:59 -04:00
LICENSE moved to apache license 2010-03-04 14:46:41 -05:00
Makefile (dist) extract version info from package.json 2010-05-26 13:37:34 -04:00
package.json (dist) version bump & updated package.json 2010-06-06 18:26:38 -04:00
README.md (doc) added link to download section 2010-05-26 12:56:07 -04:00

less.js

about

less.js is the next evolution of LESS, 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?

Go to the Downloads section, and get the latest version:

http://github.com/cloudhead/less.js/downloads

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

First, run make less in the command line. It will the build the less.js file in dist/. Then, you can use it as such:

<link rel="stylesheet/less" href="main.less" type="text/css">
<script src="less.js"></script>

To build a minified version, run make min

installation

In node:

$ npm install less