Skip to content

Commit

Permalink
(doc) update README
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudhead committed Jan 31, 2011
1 parent b7fb09f commit c06477c
Showing 1 changed file with 5 additions and 39 deletions.
44 changes: 5 additions & 39 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,45 +1,11 @@
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 }
});
The **dynamic** stylesheet language.

### via the command-line (requires node)
<http://lesscss.org>

bin/lessc style.less

### in the browser

Get the pre-built version from the `dist/` folder, and include it as such:

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

Note the `rel="stylesheet/less"` for all stylesheets you want to parse with LESS.

installation
------------

In node:
about
-----

$ npm install less
This is the JavaScript, and now official, stable version of LESS.

0 comments on commit c06477c

Please sign in to comment.