
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
#tidy-batch
###A node module to batch clean html with node htmltidy
####Install:
npm install tidy-batch
####Usage:
'use strict';
var batch = require('tidy-batch');
var inputDir ="./test/toclean/";
var outputDir="./test/output/";
var opts = {
doctype: 'html5',
hideComments: true, // multi word options can use a hyphen or "camel case"
indent: true,
"word-2000":true
};
var clean= new batch.clean(inputDir, outputDir, opts, function(num, bytes, array){
console.log(num);
console.log(bytes);
console.log(array);
});
//You can monitor the progress with
clean.on("progress", function(num, tot, file){
console.log(num);
console.log(tot);
console.log(file);
});
####Options You can pass all the options provided by htmltidy
var opts = {
doctype: 'html5',
hideComments: true, // multi word options can use a hyphen or "camel case"
indent: true,
"word-2000":true
};
FAQs
Batch html convert using tidyhtml
We found that tidy-batch 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.