# less.js-windows **Repository Path**: haojielyb/less.js-windows ## Basic Information - **Project Name**: less.js-windows - **Description**: A way to run the LESS.js compiler in windows - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-12-22 - **Last Updated**: 2024-06-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LESS.js for Windows A standalone version of the [LESS](http://lesscss.org/) command-line compiler that will run on Windows with no other dependencies. Consists of a standalone version of [Node.js](http://nodejs.org/) and the required less.js files/dependencies. ## Install **[Download and extract the release ZIP](https://github.com/duncansmart/less.js-windows/releases)** and invoke `lessc.cmd` as detailed below. ## Usage Basic usage: lessc path\source.less path\output.css Compress CSS: lessc --clean-css path\source.less path\output.css For full usage: lessc -h ## History Previously the project used the Windows Script Host `cscript.exe` as its runtime. Over time this was proving to be diffcult to support as it was essentially using the browser-based version of less.js and stubbing out objects like `window` and `document` to mimic the browser environment. This version is still available in the [windows-script-host](https://github.com/duncansmart/less.js-windows/tree/windows-script-host) branch.