Is there any way to delete this from Termux on Android?
Thank You!!!
You can just rm -r the code-server directory. It depends on where you installed it, but if you used the install script by default it'll be in ~/.local/lib/code-server-<version> and there will also be a binary symlink in ~/.local/bin/code-server you can remove.
If you want to delete settings and data as well you can remove ~/.local/share/code-server and ~/.config/code-server.
If you used yarn or npm to install code-server then you can use them to remove it.
Most helpful comment
You can just
rm -rthecode-serverdirectory. It depends on where you installed it, but if you used the install script by default it'll be in~/.local/lib/code-server-<version>and there will also be a binary symlink in~/.local/bin/code-serveryou can remove.If you want to delete settings and data as well you can remove
~/.local/share/code-serverand~/.config/code-server.