2.0.3 • Published 5 years ago

howmanylines v2.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

howmanylines

Simple performant line counter.

Preview

Installation

npm i -g howmanylines

Usage

howmanylines

[--input] <path>

The directory to analyze. Default is the current working directory.

--output | -o <type>

Specify the output type. Can be one of summary, summary-json, files, files-json The format of json types is considered stable.

--verbose | -v

Output debugging information.

--no-gitignore

Do not evaluate gitignore files.

--gitignore-files [...names]

Specify the name of gitignore files to use. Default is .gitignore

--no-color

Disable colored output.

--stat-mode <mode>

Specify, how files are analyzed. Can be one of the following:

  • default - Read complete files at once and ignore files invalid utf-8 content.
  • stream - Stream files and ignore invalid data. Recommended in case of limited memory.