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

lessify

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lessify

Middleware and Browserify transform for less files

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

lessify

Middleware and Browserify transform for less files.

Build Status
NPM

usage

some.less

.nav { width: (1 + 1); }

entry.js

require('some.less');

then

> browserify -t lessify entry.js > app.js

we haz css in our bundle!

options

Less options can be specified either on the command line:

> browserify -t [ lessify --relativeUrls --rootpath http://www.example.com/ ] entry.js

Or using the API:

var browserify = require('browserify');
var lessify = require('lessify');

var b = browserify();
b.transform({relativeUrls: true, rootpath: 'http://www.example.com/'}, lessify);
...

install

With npm do:

npm install lessify

contributors

https://github.com/dstokes/lessify/graphs/contributors

Keywords

FAQs

Package last updated on 24 Apr 2018

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