macports-www VS just

Compare macports-www vs just and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
macports-www just
15 167
14 17,053
- -
4.2 9.1
15 days ago 8 days ago
PHP Rust
- Creative Commons Zero v1.0 Universal
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.

macports-www

Posts with mentions or reviews of macports-www. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-17.
  • Ask HN: What software sparks joy when using?
    10 projects | news.ycombinator.com | 17 Apr 2024
    macports - https://www.macports.org
  • Sparkle: A software update framework for macOS
    8 projects | news.ycombinator.com | 13 Feb 2024
    I switched to MacPorts after becoming tired of Brew tainting my filesystem.

    MacPorts keeps things clean in /opt/local.

    https://www.macports.org/

    https://saagarjha.com/blog/2019/04/26/thoughts-on-macos-pack...

  • Essential Command Line Tools for Developers
    29 projects | dev.to | 15 Jan 2024
    gh is available via Homebrew, MacPorts, Conda, Spack, Webi, and as a…
  • Retroactive: Run Aperture, iPhoto and iTunes on macOS Ventura, Monterey, Big Sur
    3 projects | news.ycombinator.com | 18 Oct 2023
    I've read the article but some questions still remain. Does Retroactive install the shared dylibs of previous macOS releases? Or does it use an approach similar to https://www.macports.org/ ?
  • Why would 4K Video downloader need a bluetooth connection?
    4 projects | /r/MacOS | 30 Jun 2023
    I highly recommend using yt-dlp to download videos in the highest quality available from a wide variety of web sites (notably YouTube, hence the "yt" in the name, but it supports a ton of sites). The best way to install it is with an open-source package manager, either Homebrew or MacPorts. These make it easier to install dependencies like Python 3.11 and optional (but highly recommended) utilities like ffmpeg. Both Homebrew and MacPorts are great, and you can install both side-by-side. I guess I'd recommend Homebrew over MacPorts because it downloads pre-built binaries instead of compiling from source, so it's faster. But again, they are both great.
  • Homebrew
    8 projects | /r/MacOS | 1 Mar 2023
    This is Reddit so they will most likely be people who say to download Macports, but frankly, I don't care, and homebrew is enough for me. I'm not smart, but I know not to download programs/random things without prior research, don't use sudo commands on things you don't know and don't enter your password if you feel unsafe.
  • Long-time Windows/Linux user with a new Macbook with some generic questions (Macbook Pro M1 Pro)
    2 projects | /r/applehelp | 27 Feb 2023
    The initial setup was quick and painless, but I quickly realized that MacOS does not ship with a package manager (to my surprise!) the Apple Store won't be enough to cover my needs, so onto Google I went. I learned that the two most popular package managers are Homebrew and MacPorts. After reading for a while, I found some users concerned about how Homebrew managed folder permissions (here and here), and with the fact that it installs already compiled binaries, which may be a security/privacy issue. However, it seems that the folder issue was addressed with the ARM release of Homebrew, which now installs under the /opt/homebrew folder.
  • Homebrew 4.0.0 release
    6 projects | /r/apple | 16 Feb 2023
    On Linux, most distributions come with their own package manager out of the box (e.g. Ubuntu / Debian has APT). One annoying thing about macOS as a development platform is that it does not come with one out of the box, and Homebrew has emerged as the most popular third-party management by far. There are other ones like MacPorts as well but I think this is the kind of thing where the popular one tends to become more popular because people don't want to learn/use multiple package manager. I actually used to use MacPorts before I switched to Homebrew just because it's been getting a lot more momentum / features / development and it's where every package is.
  • Want to revert OS so we can run Aperture and see family photo archiv
    3 projects | /r/osx | 28 Jan 2023
    Others have offered solutions, but for future reference the actual Terminal commands that failed would be useful; "File not found" sounds like a path error, "Command not found" sounds fixable via Homebrew or Macports
  • UNIX as a concept, vs a trademark
    2 projects | /r/unix | 28 Jan 2023
    TL;DR, about the section that states software from other UNIX-like OSes is hard to port to MacOS, how about homebrew and macports?

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-04-27.
  • I stopped worrying and loved Makefiles
    7 projects | news.ycombinator.com | 27 Apr 2024
    I don't like makefiles, but I've been enjoying justfiles: https://github.com/casey/just
  • Just a Command Runner
    1 project | news.ycombinator.com | 25 Apr 2024
  • Ask HN: Any tool for managing large and variable command lines?
    8 projects | news.ycombinator.com | 25 Apr 2024
    I started using just [0] on my projects and have been very happy so far. It is very similar to make but focused on commands rather than build outputs.

    Define your recipes and then you can compose them as needed.

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

  • Ask HN: What software sparks joy when using?
    10 projects | news.ycombinator.com | 17 Apr 2024
    just - https://github.com/casey/just
  • GitHub switched to Docker Compose v2, action needed
    2 projects | news.ycombinator.com | 3 Apr 2024
    Welp there is absolute chaos in that thread -- guess it's not an April Fools joke.

    I wonder if relying on CI for anything other than provisioning machines is a mistake -- maybe we should have never moved from doing things from local scripts written in $LANGUAGE.

    That said, I'm probably biased since I'm a massive fan of things like `make` and more appropriately for the current age, `just`[0]

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

  • Which command did you run 1731 days ago?
    9 projects | news.ycombinator.com | 21 Jan 2024
    > When a command has some cognitive requirements I create a script with some ${1:-default} values and I store them all in $PATH enabled local/bin

    I would consider using just for this:

    https://github.com/casey/just

  • Using Make – writing less Makefile
    6 projects | news.ycombinator.com | 26 Dec 2023
    Your coworker's experience is more principled: Make is a mediocre tool for executing commands. It wasn't ever designed for that. Although it is pretty common to see what you are mentioning in projects because it doesn't require installing a dependency.

    For a repo where an easy to install (single binary) dependency is a non-issue, consider using just. [1] You get `just -l` where you can see all the command available, the ability to use different languages, and overall simpler command writing.

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

  • Show HN: Just.sh – compiler that turns Justfiles into portable shell scripts
    7 projects | news.ycombinator.com | 26 Dec 2023
    This is fantastic, but I'd say that this solution is somewhat in response to this open issue from 2019:

    https://github.com/casey/just/issues/429

    I really wish just was included as a package in distributions.

  • Sharing Saturday #496
    6 projects | /r/roguelikedev | 8 Dec 2023
    So far, I didn't work on new features at all but on stabilizing the ground for further development: 1. CMake lists and modules were rewritten a lot, now managing builds and their configurations is much lesser pain. 2. Brought in Justfile for regular tasks, and it's great, no less. 3. Linters, formatters, analyzers for almost all the code (except for Janet for now, as because of it being a niche and young technology, it didn't get enough attention yet). 4. ECS stub. Now runtime class doesn't look like a god object. 5. Started writing unit tests which didn't happen with my personal projects before and maybe indicates how serious am I about this one :D 6. Some of previously hardcoded data has been moved to INI files. Now, if I release the game in 10 years, and in 10 more years some eccentric person decides to make a variant of it, it will be slightly simpler.
  • What’s with DevOps engineers using `make` of all things?
    17 projects | /r/devops | 6 Dec 2023
    i've grown to like this for my personal projects. https://github.com/casey/just

What are some alternatives?

When comparing macports-www and just you can also consider the following projects:

HomeBrew - 🍺 The missing package manager for macOS (or Linux)

Task - A task runner / simpler Make alternative written in Go

awesome-macOS -  A curated list of awesome applications, softwares, tools and shiny things for macOS.

cargo-make - Rust task runner and build tool.

drawing - Simple image editor for Linux

cargo-xtask

Retroactive - Retroactive only receives limited support. Run Aperture, iPhoto, and iTunes on macOS Sonoma, macOS Ventura, macOS Monterey, macOS Big Sur, and macOS Catalina. Xcode 11.7 on macOS Mojave. Final Cut Pro 7, Logic Pro 9, and iWork ’09 on macOS Mojave or macOS High Sierra.

Taskfile - Repository for the Taskfile template.

open-source-mac-os-apps - 🚀 Awesome list of open source applications for macOS. https://t.me/s/opensourcemacosapps

CodeLLDB - A native debugger extension for VSCode based on LLDB

Soduto - Soduto is a KDE Connect compatible client for macOS. It allows better integration between your phones, desktops and tablets.

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