just VS Task

Compare just vs Task and see what are their differences.

just

🤖 Just a command runner (by casey)

Task

A task runner / simpler Make alternative written in Go (by go-task)
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
just Task
183 120
21,854 11,604
- 2.2%
9.5 9.6
4 days ago 2 days ago
Rust Go
Creative Commons Zero v1.0 Universal MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

just

Posts with mentions or reviews of just. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-10-20.
  • Pyqwe: The quick work environment for Python
    1 project | news.ycombinator.com | 24 Nov 2024
    Benefit is you can just type the command, no need to prepend pyqwe or anything.

    See also justfile for a non-python specific tool https://github.com/casey/just

  • Open source, learn in public e minha experiĂŞncia
    9 projects | dev.to | 20 Oct 2024
  • Show HN: A Markdown based alternative to package.json scripts and Makefiles
    6 projects | news.ycombinator.com | 12 Oct 2024
    This is an interesting approach. These days I have completely switched to just[0] tool for similar use case.

    [0]: https://github.com/casey/just

  • Django project setup - Part 1
    8 projects | dev.to | 30 Sep 2024
    # Palindrome project Project used to explain my view on a django project architecture ## Tools, libs, etc. Some time related files. Versions on Poetry. - [Python](https://www.python.org/) Programming languange - [django-environ](https://django-environ.readthedocs.io) Manage .envs in Django - [Poetry](https://python-poetry.org/) Python packaging and dependency management - poetry.lock - pyproject.toml - [Django](https://www.djangoproject.com/) Web framework written in Python - [Docker](https://www.docker.com/) Manage containers for dev environment - compose.yaml - compose/dev/Dockerfile - compose/dev/start - .env - [Just](https://just.systems/) encapsulate commands for easier use - justfile ## Dev environment setup 1. Install Just, Docker and Poetry(opcional). 2. Copy .env.example to .env, no need for edtion. 3. Certified that docker is up and running 4. `$ just build` ## Run the server for development 1. Certified that docker is up and running 2. `$ just runserver` You can access on http://0.0.0.0:8000/
  • Technical Deep Dive: How We Built the Pizza CLI Using Go and Cobra
    7 projects | dev.to | 23 Sep 2024
    We heavily use Just at OpenSauced, a command runner utility, much like GNU’s “make”, for easily executing small scripts. This has enabled us to quickly onramp new team members or community members to our Go ecosystem since building and testing is as simple as “just build” or “just test”!
  • I Like Makefiles
    14 projects | news.ycombinator.com | 20 Sep 2024
  • Plain Text Accounting (PTA)
    8 projects | news.ycombinator.com | 15 Sep 2024
    > If I had to submit one tip it would be to set everything up with a Makefile or similar.

    If I had to submit a tip on top of yours, it's to use justfiles instead of Makefiles :-)

    https://github.com/casey/just

  • Makefiles for Web Work (2022)
    6 projects | news.ycombinator.com | 24 Aug 2024
    If you’re going to use make, use just instead:

    https://github.com/casey/just

  • Slime mold simulation in Rust using WASM and WebGPU
    3 projects | news.ycombinator.com | 22 Aug 2024
  • Show HN: 30ms latency screen sharing in Rust
    8 projects | news.ycombinator.com | 9 Jul 2024
    My first thought was that that was dropping one of the main features of make.

    On reflection though, the timestamp dependant part isn't really something used much nowadays apart from compiling C.

    It'd be cool if it was an opt-in feature for just files so that it could actually function as a replacement for make in all cases.

    I went looking in the docs and found this[0] which I'd missed last time I looked into justfiles.

    [0] https://github.com/casey/just?tab=readme-ov-file#what-are-th...

Task

Posts with mentions or reviews of Task. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-09-20.
  • Why I Switched from Makefile to Taskfile
    1 project | dev.to | 5 Nov 2024
    Taskfile is a Go-based task runner using YAML syntax for defining tasks. It simplifies project workflows by automating repetitive tasks like building, testing, and deploying code.
  • I Like Makefiles
    14 projects | news.ycombinator.com | 20 Sep 2024
    I also use make this way and have done for years. I even have the same kind of religious ritual the author has, like writing the Makefile is part of setting up the codebase and organising in my own head how the whole local dev environment is going to work.

    The only thing is, this isn't what make is actually for. A number of commenters have recommended Just - the one I've been using on my personal projects is Task - https://taskfile.dev/ - which is pretty great. As other commenters have said, the problem is that make is installed everywhere already. I would love to see a task runner become standard to the same extent, and will have a look at Just if that's the one people are using.

  • Makefiles for Web Work (2022)
    6 projects | news.ycombinator.com | 24 Aug 2024
    I use https://taskfile.dev and I love it.
  • Ask HN: Best Tools for Monorepo?
    13 projects | news.ycombinator.com | 31 Jul 2024
    We have a very similar setup (except s/Next.js/Remix) and went with npm workspaces + Task [1], and it's working really, really well so far. This is our second iteration of a monorepo (first one was a straight React SPA bundled with Vite instead of Remix).

    We have a root Taskfile that references our JS and Go taskfiles and wraps / abstracts all tasks. It's good for dependency management and task orchestration (`task lint` will run lint in both JS and Go for example, and `task test` does the same).

    TypeScript sharing between packages can be a lil' funky, but so far it's super solid. Happy to share more if it would be helpful.

    [1]: https://taskfile.dev/

  • Streamlining Project Automation with Makim
    4 projects | dev.to | 19 Jul 2024
    Taskfile is described as a task runner/build tool that aims to be simpler and easier to use. It is often used in the Go language.
  • Show HN: Bin CLI – A simple task/script runner for any programming language
    3 projects | news.ycombinator.com | 31 May 2024
    Most projects I've worked on included a bunch of scripts for common tasks (installing dependencies, starting/stopping dev servers, testing and deploying changes, and so on). There are a few tools designed for this, such as Just (https://just.systems/) and Task (https://taskfile.dev/), and I know some people use Make as a task runner (e.g. https://news.ycombinator.com/item?id=40333481), but I've always preferred the simplicity and universality of shell scripts.

    Bin CLI is a tool I wrote to add some of the niceties of these tools to shell scripts: it works even when you're currently in a subdirectory, only requires you to type enough of the command (script) name to uniquely identify it, and allows aliases to be defined. It also allows a project's commands to be listed (along with some help text), supports subcommands, and supports tab completion of command names. Of course scripts can be written in other languages too, just by adding the appropriate shebang.

    Collaborators/contributors who don't have Bin CLI installed can just run the scripts directly - so I can enjoy the benefits without adding a hard dependency or extra barrier to entry. However, I also added support for defining one-liner scripts/aliases in a config file (much like "npm run" scripts are defined in package.json) for times when I want to avoid creating many trivial/wrapper scripts for common tasks.

    It is implemented as a single Bash script, with minimal dependencies, small enough to keep in my Dotfiles repo (62 KB). I also made .deb and .rpm packages so it can easily be installed system-wide.

  • Alternatives to Makefiles written in Go
    2 projects | dev.to | 28 May 2024
    The first tool we will test is  Taskfile, found on the website https://taskfile.dev/. The tool's idea is to perform tasks described in a file called Taskfile.yaml and, as the name suggests, in yaml.
  • Show HN: Workflow Orchestrator in Golang
    7 projects | news.ycombinator.com | 4 Mar 2024
    So many tools in this space! This one looks a little bit like go-task, but it seems maybe better for production workflows because if timeout support, while go-task seems more aimed to command line work/makefile replacement.

    —-

    https://github.com/go-task/task

  • Essential Command Line Tools for Developers
    29 projects | dev.to | 15 Jan 2024
    View on GitHub
  • Task: A task runner / alternative to GNU Make
    1 project | news.ycombinator.com | 26 Dec 2023

What are some alternatives?

When comparing just and Task you can also consider the following projects:

cargo-make - Rust task runner and build tool.

goreleaser - Deliver Go binaries as fast and easily as possible

cargo-xtask

doit - CLI task management & automation tool

Taskfile - Repository for the Taskfile template.

boilr - :zap: boilerplate template manager that generates files or directories from template repositories

CodeLLDB - A native debugger extension for VSCode based on LLDB

JobRunner - Framework for performing work asynchronously, outside of the request flow

cargo-release - Cargo subcommand `release`: everything about releasing a rust crate.

taskctl - Concurrent task runner, developer's routine tasks automation toolkit. Simple modern alternative to GNU Make 🧰

helix - A post-modern modal text editor.

spinner - Go (golang) package with 90 configurable terminal spinner/progress indicators.

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured

Did you konow that Rust is
the 5th most popular programming language
based on number of metions?