
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
lessify-middleware
Advanced tools
Express middleware to compile less files without littering up the file system with a lot of junk.
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);
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.
The options passed to the middleware function will override the default settings:
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.
Passed to the less compiler to control the compression.
Control if the gzip transfer encoding is enabled.
Passed to the less compiler to control the search path.
{
cache: process.env.NODE_ENV === 'production',
compress: process.env.NODE_ENV === 'production',
paths: null,
gzip: true,
}
MIT
FAQs
connect middleware to serve compiled less files
The npm package lessify-middleware receives a total of 0 weekly downloads. As such, lessify-middleware popularity was classified as not popular.
We found that lessify-middleware demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.