md-stats

1.0.3 • Public • Published

Markdown Stats

A simple tool to report on statistics of Markdown file content within the given directory (recursively).

Useful for reporting how much documentation exists within a project.

Available stats are:

  • Markdown file count
  • character count
  • word count

Usage

CLI

If the directory is omitted, it will run for the current directory.

If the --verbose flag is present, it will also display stats on a per-file basis.

Example

npx md-stats ./path/to/files --verbose

Node.js

The exported function can also be used in a Node.js environment, which will return the raw data.

Example

const getMarkdownStats = require("md-stats");
 
const stats = await getMarkdownStats("./path/to/files");

The data returned is in the following format:

{
  characters: number,
  words: number,
  files: [
    {
      name: string,
      characters: number,
      words: number
    }
  ]
}

Dependents (0)

Package Sidebar

Install

npm i md-stats

Weekly Downloads

2

Version

1.0.3

License

MIT

Unpacked Size

3.85 kB

Total Files

5

Last publish

Collaborators

  • voodoocreation