A minimal Node.js wrapper around the Less CSS preprocessor, allowing compilation of .less files to CSS programmatically and via command-line. Version 1.0.0 is the initial release with basic compilation support. No longer maintained; users should switch to the official 'less' npm package which is actively developed and includes all features.
npm install node-lessNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic usage of less.compile() to process Less source and produce CSS output synchronously.
npm uninstall node-less && npm install less
Migrate to 'less' package's render() for full feature set.
Wrap in try-catch block. For async usage, use official 'less' package's renderAsync.
npm install less
Use `import less from 'node-less'` then call `less.compile(input)`.
No dependency data recorded yet.