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 │
├──────────────────────────────────────────────────────────────────────────────┤
│ CSS 6384 9 40 108 145.89 KB │
│ HTML 19 0 0 1 1011 B │
│ JSON 205 0 0 110 13.25 KB │
│ JavaScript 206 8 1 113 590.14 KB │
│ Markdown 8 0 5 1 229 B │
│ TypeScript JSX 14733 262 800 109 530.76 KB │
│ TypeScript 680 57 57 8 22.07 KB │
│ YAML 5 0 0 1 83 B │
├──────────────────────────────────────────────────────────────────────────────┤
│ Total 22,240 336 903 451 1.27 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 -e './node_modules/**'
lok -e '/.ts' '/.js' ```
```bash
lok -i './src/*.rs' ```
```bash
lok --extension js ts jsx tsx ```
```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