0.0.2 • Published 11 years ago

chm-manual v0.0.2

Weekly downloads
7
License
-
Repository
-
Last release
11 years ago

#chm-manual

Creation of NodeJS API manual docs in CHM HTML Help format from original sources in http://nodejs.org/api/all.json

Installation

npm install chm-manual

Usage

makeManual(workdir, [callback])

* should have rights to create and write to specified working directory
* HTML Help Workshop compiler should be installed in a system and defined in system PATH
var man = require('chm-manual');

man.makeManual('manual', function() {
	console.log('finished');
});