Node API docs in Markdown, HTML, or JSON, as a readable stream.
var apidocs = require('node-api-docs');
apidocs.markdown('net')
.pipe(process.stdout);
Returns readable stream of Markdown.
Returns readable stream of HTML.
Returns readable stream of JSON.
nodeApiDocs(module).on('error', function(err))
Emitted if connection failed, or server responds with code other than 200.
Writes docs to stdout, or pipes to pager if stdout is TTY.
Prints list of doc pages.
npm install node-api-docs
MIT