express-less
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/express-less package

0.1.0 • Public • Published

Express LESS

On-the-fly LESS-to-CSS conversion middleware.

For more information on LESS visit lesscss.org.

Installation

$ npm install express-less

Usage

var express = require('express'),
    expressLess = require('express-less');
 
var app = express();
app.use('/less-css', expressLess(__dirname + '/less'));

Now request to /less-css/styles.css will return rendered contents of ./less/styles.less. Note the change of file extension from .less to .css.

Additionally, you can ask LESS to compress the result:

app.use('/less-css', expressLess(__dirname + '/less', { compress: true }));

For detail information on LESS errors use the debug option, e.g.

// Enable error reporting permanently
app.use('/less-css', expressLess(__dirname + '/less', { debug: true }));
 
// or only for development environment
app.use('/less-css', expressLess(__dirname + '/less', {
    debug: app.get('env') == 'development'
}));

You can enable the cache system to improve performance:

app.use('/less-css', expressLess(__dirname + '/less', { cache: true }));

Tests

$ npm test

License

Copyright (C) 2015 Andrew A. Usenok <tooogle@mail.ru>

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Readme

Keywords

Package Sidebar

Install

npm i express-less

Weekly Downloads

477

Version

0.1.0

License

GPL-3.0

Last publish

Collaborators

  • toogle