omni-search

(★ 594)

High-performance Windows file search + duplicate finder using NTFS USN/MFT, with Android LAN sync. Built with Tauri, Rust, C++, and Kotlin.

File Explorer

  • .gitignore
  • CONTENT_SEARCH_GUIDE.md
  • index.html
  • LICENSE
  • package-lock.json
  • package.json
  • PRIVACY.md
  • README.md
  • RELEASE_NOTES.md
  • tsconfig.json
  • tsconfig.node.json
  • vite.config.ts

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

cargo check

View Details ▼

Check a local package and all of its dependencies for errors.

cargo {{[c|check]}}

Check the current package:

cargo {{[c|check]}} --tests

Check all tests:

cargo {{[c|check]}} --test {{integration_test1}}

Check the integration tests in `tests/integration_test1.rs`:

🔍

cargo clean

View Details ▼

Remove generated artifacts in the `target` directory.

cargo clean

Remove the entire `target` directory:

cargo clean --doc

Remove documentation artifacts (the `target/doc` directory):

cargo clean {{[-r|--release]}}

Remove release artifacts (the `target/release` directory):

🔍

npm install

View Details ▼

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

🔍

npm run

View Details ▼

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

🔍

npx

View Details ▼

This command is an alias of `npm exec`.

tldr npm exec

View documentation for the original command:

🔍

fsutil

View Details ▼

Display information about filesystem volumes.

fsutil volume list

Display a list of volumes:

fsutil fsInfo volumeInfo {{drive_letter|volume_path}}

Display information about a volume's filesystem:

fsutil repair state

Display the current state of the filesystem auto-repair for all volumes:

// repository documentation