Node API docs in Markdown, HTML, or JSON
npm install node-api-docs
 [![Dependency Status][david-badge]][david]
Node API docs in Markdown, HTML, or JSON, as a readable stream.
[david]: https://david-dm.org/eush77/node-api-docs
[david-badge]: https://david-dm.org/eush77/node-api-docs.png
``js
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.
`js`
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