-
|
Thinking of using the faster package managers |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
TL;DR: Yes for Deno, didn't check Bao. It's almost always going to be faster to just try rather than ask us! You could create a Docker container, throw Deno on there, and simply install tldr to see how it goes. I'm not sure about other maintainers, but I for example don't pay much mind to Deno, so it makes more sense for you to investigate it than me for example. In this instance, happy to run the test for you though. But I recommend giving it a try yourself next time around! (Or even follow along, if you get stuck anywhere you can throw your question here and I'll try to clear things up for you.) On my host environment, I use Docker to create a disposable Linux container: docker run -it --rm debian:trixie bashIn the disposable container: # check for updates
apt update
# install curl and unzip which are needed to install deno
apt install -y curl unzip
# install deno
curl -fsSL https://deno.land/install.sh | sh
# to avoid needing to respawn the shell, we'll just source our .bashrc again
. ~/.bashrc
# install tldr globally
deno install --global npm:tldr
# we can use tldr normally, but i use deno run -A to bypass all the permission logic
deno run -A npm:tldr --update
deno run -A npm:tldr psExample output:
|
Beta Was this translation helpful? Give feedback.
TL;DR: Yes for Deno, didn't check Bao.
It's almost always going to be faster to just try rather than ask us!
You could create a Docker container, throw Deno on there, and simply install tldr to see how it goes. I'm not sure about other maintainers, but I for example don't pay much mind to Deno, so it makes more sense for you to investigate it than me for example.
In this instance, happy to run the test for you though. But I recommend giving it a try yourself next time around! (Or even follow along, if you get stuck anywhere you can throw your question here and I'll try to clear things up for you.)
On my host environment, I use Docker to create a disposable Linux container: