Comment by theanonymousone

12 days ago

I already do it, but not in TS. There is a scripting language that is as available in most/all (non-Windows) systems as Bash: Python.

Edit: zero-dependency Python.

Works all and well until you need a dependency, then you need to do all the same project setup as normal.

Stopped using python for scripting for this reason

  • If you use `uv`, you can declare your dependencies at the top of a script: https://docs.astral.sh/uv/guides/scripts/#declaring-script-d...

    I've started using Python for many more tasks after I discovered this feature. I'm primarily a JS/TS developer, but the ability to write a "standalone" script that can pull in third-party dependencies without affecting your current project is a massive productivity boost.

    • Then I have to install uv globally

      That convenience you think boosts productivity is a short term thing, using comments for dependency management is an anti pattern imo