New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

tidy-batch

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tidy-batch

Batch html convert using tidyhtml

latest
Source
npmnpm
Version
0.0.6
Version published
Maintainers
1
Created
Source

#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

Package last updated on 03 Oct 2015

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