wpmx 1.0.0 → 1.0.1
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.
- package/README.md +26 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,15 +10,38 @@ A minimal, fast typing test for the terminal. Built with [Bun](https://bun.sh),
|
|
|
10
10
|
- **Personal best** tracking with local history
|
|
11
11
|
- **Vim-style navigation** — `h`/`l` to pick duration
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## Quick start
|
|
14
|
+
|
|
15
|
+
Run it instantly without installing:
|
|
14
16
|
|
|
15
17
|
```bash
|
|
16
|
-
|
|
18
|
+
npx wpmx
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
or with Bun:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
bunx wpmx
|
|
17
25
|
```
|
|
18
26
|
|
|
19
|
-
##
|
|
27
|
+
## Install globally
|
|
20
28
|
|
|
21
29
|
```bash
|
|
30
|
+
npm install -g wpmx
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Then run it anywhere:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
wpmx
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Development
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
git clone https://github.com/handxr/wpmx.git
|
|
43
|
+
cd wpmx
|
|
44
|
+
bun install
|
|
22
45
|
bun run src/index.tsx
|
|
23
46
|
```
|
|
24
47
|
|