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
lok /root/code ```
```bash
lok -ext ts js ```
```bash
lok -e main.rs
lok -e 'jsx?$' 'tsx?$' ```
```bash
lok -i '^main.\w+$' ```
```bash
lok -o markdown
lok -o html > code.html lok -o markdown > code.md ```
```bash
lok -s code ```
If you want to add statistics for other languages, please update config.rs
Example:
rust
language!(
"Rust",
vec!["rs"],
vec!["//", "///"],
vec![("/*", "*/")]
);
// ...
First need to install
bash
cargo install hyperfine loc tokei
Run
bash
./benchmark
MIT LICENSE