lok
is a command line tool, that is used to quickly calculate the number of lines of various language codes in a project
┌──────────────────────────────────────────────────────────────────────────────┐
| Language Code Comment Blank File Size |
├──────────────────────────────────────────────────────────────────────────────┤
| HTML 360 0 27 13 24.97 KB |
| JavaScript 238 240 79 22 935.95 KB |
| JavaScript JSX 26570 2011 4096 299 766.10 KB |
| JSON 81 0 3 4 1.97 KB |
| MarkDown 31 0 13 1 882.00 B |
| TypeScript 57 6 12 3 3.78 KB |
| TypeScript JSX 691 78 46 10 19.12 KB |
| YML 4 0 0 1 58.00 B |
├──────────────────────────────────────────────────────────────────────────────┤
| Total 28032 2335 4276 353 1.71 MB |
└──────────────────────────────────────────────────────────────────────────────┘
Download the binary from the release page
Or use cargo
to install
bash
cargo install lok
Go to your project in the terminal and type lok on the command line
bash
cd your-project
lok
```bash
lok -e ts js ```
```bash
lok -i node_modules dist
lok -i 'node_\w+|dist' ```
```bash
lok -o markdown
lok -o html > code.html lok -o markdown > code.md ```
```bash
lok -p /root/code ```
```bash
lok -s code ```
If you want to add statistics for other languages, please update config.rs
Example:
rust
language!(
"JavaScript",
vec!["js"],
regex!(r#"^\s*//"#),
regex!(r#"/\*"#, r#"\*/"#)
);
// ...
MIT LICENSE