> `webi` is what you would have created if you automated how you install your
> common tools yourself: Simple, direct downloads from official sources,
-> unpacked into `$HOME/.local`, added to `PATH`, symlinked for easy version
+> unpacked into `~/.local`, added to `PATH`, symlinked for easy version
> switching, with minimal niceties like resuming downloads and 'stable' tags.
- Easy to remember.
install:
```bash
-webi node@latest
+webi node@lts golang@stable flutter@beta rustlang
```
+### webi PATHs
+
+You can see exactly what PATHs have been edited:
+
```bash
-webi golang@v1.14
+pathman list
```
+And where:
+
```bash
-webi rustlang
+cat ~/.config/envman/PATH.env
```
-You can see exactly what PATHs have been edited:
+### Uninstall `webi`
+
+`webi` uses standard paths and touches very little.
```bash
-pathman list
+rm -rf ~/.local/opt ~/.local/bin
```
-And where:
+If you haven't used `pathman` for anything else, you can also remove its config:
```bash
-cat $HOME/.config/envman/PATH.env
+rm -f ~/.config/envman/PATH.env
```