Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lessify-middleware

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lessify-middleware

connect middleware to serve compiled less files

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

lessify-middleware

Express middleware to compile less files without littering up the file system with a lot of junk.

Usage

var lessify = require('lessify-middleware');
var express = require('express');
var app = express();

// provide compiled version of '.less' files in the directory
app.use('/style', lessify('/style/dir'));

// provide a compiled version of a particular file
app.use('/file.css', lessify('source/file.less'));

app.listen(1967);

API

lessify('/path/to/file.less'[, options])

Return middleware to serve a compiled version of the file.

lessify('/path/to/dir'[, options])

Return middleware to serve compiled versions of all files in the directory.

options / settings

The options passed to the middleware function will override the default settings:

cache

The cache settings controls the cache control header and in-memory caching of the compilation results. If this is false or null, no caching will be done and no cache headers sent. Otherwise the compilation will be cached and the this header will determine the 'Cache-Control' header.

compress

Passed to the less compiler to control the compression.

gzip

Control if the gzip transfer encoding is enabled.

paths

Passed to the less compiler to control the search path.

defaults
{
  cache: process.env.NODE_ENV === 'production',
  compress: process.env.NODE_ENV === 'production',
  paths: null,
  gzip: true,
}

License

MIT

Keywords

FAQs

Package last updated on 18 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc