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

express-compiless

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-compiless

Express middleware that compiles less files to css on the way out.

  • 0.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.1K
increased by54.85%
Maintainers
1
Weekly downloads
 
Created
Source

express-compiless

Middleware that compiles less to css on-the-fly. Intended to be used in a development setting with the connect.static middleware, but should work with any middleware further down the stack, as long as a text/less response is served. Or if the Content-Type of the response is application/octet-stream and the request url ends in .less.

Installation

Make sure you have node.js and npm installed, then run:

npm install express-compiless

Example usage

var express = require('express'),
    compiless = require('express-compiless'),
    root = '/path/to/my/static/files';

express.createServer()
    .use(compiless({root: root}))
    .use(express.static(root))
    .listen(1337, done);

License

3-clause BSD license -- see the LICENSE file for details.

Keywords

FAQs

Package last updated on 02 Oct 2012

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