wheretf 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +42 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # wheretf (WTF — Where's The File?)
2
+
3
+ **WTF** is a blazing-fast, cross-platform interactive terminal file finder and CLI searcher written in pure Go.
4
+
5
+ This NPM package is a lightweight global wrapper that automatically downloads and caches the optimized, pre-compiled native WTF binary for your specific operating system (Windows, macOS, or Linux) and CPU architecture during installation, then exposes it to your terminal with zero overhead.
6
+
7
+ ---
8
+
9
+ ## ⚡ Installation
10
+
11
+ Install the package globally via npm:
12
+
13
+ ```bash
14
+ npm install -g wheretf
15
+ ```
16
+
17
+ ---
18
+
19
+ ## 🚀 Usage
20
+
21
+ Once installed, simply type **`wtf`** in your terminal:
22
+
23
+ ```bash
24
+ wtf
25
+ ```
26
+
27
+ You can also start a search query directly:
28
+
29
+ ```bash
30
+ wtf main.go
31
+ ```
32
+
33
+ ---
34
+
35
+ ## 🔍 Features
36
+
37
+ * **Insanely Fast:** Scans 160,000+ files per second using concurrent Go routines.
38
+ * **Zero Dependencies:** Runs on a pre-compiled native binary built for your OS/CPU.
39
+ * **Fuzzy Filtering:** Full fuzzy matching as you type.
40
+ * **Beautiful Terminal UI:** Styled with high-fidelity Charm Bubble Tea interactive layouts.
41
+
42
+ For full documentation, source code, and release notes, visit the [Main GitHub Repository](https://github.com/hariharen9/wtf).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wheretf",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Where's The File? Blazing-fast interactive terminal file finder and CLI searcher.",
5
5
  "main": "bin/wtf",
6
6
  "bin": {