dd-memo 0.1.1 → 0.1.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.
- package/README.md +17 -0
- package/package.json +1 -1
- package/server-dist.tar.gz +0 -0
package/README.md
CHANGED
|
@@ -10,6 +10,23 @@ npm install -g dd-memo
|
|
|
10
10
|
|
|
11
11
|
Requires Node.js ≥ 20.
|
|
12
12
|
|
|
13
|
+
### `dd-memo: command not found` after install?
|
|
14
|
+
|
|
15
|
+
The npm global bin dir isn't on your `$PATH`. One-liner fix (zsh):
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
echo "export PATH=\"$(npm config get prefix)/bin:\$PATH\"" >> ~/.zshrc
|
|
19
|
+
source ~/.zshrc
|
|
20
|
+
dd-memo --version
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Use `~/.bashrc` instead if you're on bash. If that doesn't help, confirm the binary exists:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
ls "$(npm config get prefix)/bin/" | grep dd-memo
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
|
|
13
30
|
## Usage
|
|
14
31
|
|
|
15
32
|
```bash
|
package/package.json
CHANGED
package/server-dist.tar.gz
CHANGED
|
Binary file
|