zef VS MoarVM

Compare zef vs MoarVM and see what are their differences.

MoarVM

A VM with adaptive optimization and JIT compilation, built for Rakudo (by MoarVM)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
zef MoarVM
7 11
206 678
- 0.9%
7.5 7.9
4 days ago 1 day ago
Raku C
Artistic License 2.0 GNU General Public License v3.0 or later
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.

zef

Posts with mentions or reviews of zef. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-05.
  • Writing a Database backed Micro-service with Raku and Humming-Bird
    5 projects | dev.to | 5 Mar 2023
    To begin, you'll want to make sure that you have Raku installed, I recommend using Rakubrew. Then we'll want to install Zef, if you're new to Raku, Zef is basically just NPM or CPAN for Raku, it's written by the fabulous Ugexe and is the default package manager people use with Raku. If you installed Raku with Rakubrew, you can simply run rakubrew build-zef and it will handle all of the configuration for you.
  • Tests
    1 project | /r/u_Sebastien_Dorey_SDO | 14 Feb 2023
    I tested it on my computer. I needed to install zef from here. I installed libraries needed to use rakudo_debug. Here hat I get below:
  • How do you determine what the "latest" module version is?
    1 project | /r/rakulang | 13 Jan 2023
    See: https://github.com/ugexe/zef/blob/9779091b7997468257ce3037f8bc0e9c65d1f974/t/repository.rakutest#L85-L128 for an example of how the tiering of ecosystems work, and https://github.com/ugexe/zef/commit/a12d286312c6d7bc3c8ffebe51cce4caae6268cf for some reasoning
  • Cannot Install Zef
    3 projects | /r/rakulang | 19 Oct 2022
    I have Rakudo 2022.07 on my Mac. I cloned https://github.com/ugexe/zef, which got me version 0.14.4. I cd'ed into the clone and ran this:
  • requesting thoughts/advice on distributing personal tools
    3 projects | /r/rakulang | 9 Sep 2022
    zef -v install https://github.com/ugexe/zef.git
  • Designing containers for GitHub actions
    9 projects | dev.to | 30 Dec 2021
    FROM ghcr.io/jj/raku-gha ENV PKGS="git tar" PKGS_TMP="make gcc linux-headers musl-dev" WORKDIR="/home/raku" LABEL version="1.0.3" maintainer="[email protected]" rakuversion=$VER USER root RUN apk update && apk upgrade && apk add --no-cache $PKGS $PKGS_TMP USER raku # Environment ENV PATH="${WORKDIR}/.raku/bin:${WORKDIR}/.raku/share/perl6/site/bin:${PATH}" \ ENV="${WORKDIR}/.profile"\ RAKULIB="inst#/home/raku/.raku" # Basic setup, programs and init WORKDIR $WORKDIR RUN git clone --depth 1 https://github.com/ugexe/zef.git \ && cd zef && raku -I. bin/zef install . \ && zef install Linenoise \ && cd .. && rm -rf zef USER root RUN apk del $PGKS_TMP USER raku ENTRYPOINT ["raku"]
  • Issues with installing zef
    1 project | /r/rakulang | 24 Aug 2021
    This is the issue I found on GitHub.

MoarVM

Posts with mentions or reviews of MoarVM. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-07.
  • Stability
    14 projects | dev.to | 7 Mar 2024
    Implement return prioritization #1786: superseeded
  • What's a good way to represent overloaded functions at a low level?
    1 project | /r/ProgrammingLanguages | 24 Apr 2023
    Now, as to how that's done at the low level, and whether the way it's done is a good way to do it, well, I can't help. Suffice to say, the main place to look for how this is handled at the low-level is MoarVM. I dug around for a couple minutes and have a link to a commit from nearly a decade ago. Does that help?
  • Language intrinsics and custom array layout
    2 projects | /r/ProgrammingLanguages | 28 Nov 2022
    For a class the default representation is P6Opaque. This is one of a few dozen stock representations that Raku requires compiler backends implement as standard. See, for example, the 46 .c/.h pairs of C89 source files in the relevant MoarVM directory. A quick glance at the names of the source code files should paint a broad picture. A look at their code will fill in some details.
  • Directly run compiled bytecode file?
    2 projects | /r/rakulang | 14 Oct 2022
  • How do you know if an allocator is good?
    1 project | /r/ProgrammingLanguages | 10 Oct 2022
    I'm hoping someone who knows C89 can take a quick gander at the C89 code implementing 47 representations in here and comment on it.
  • MoarVM: A VM with adaptive optimization and JIT compilation, built for Rakudo
    1 project | news.ycombinator.com | 1 May 2022
  • Any languages doing anything interesting with allocators?
    4 projects | /r/ProgrammingLanguages | 23 Feb 2022
    This is (yet another) very un(der)documented Raku feature (over a decade after it was introduced!), but one can browse what looks to me like reasonably clean and commented C89 code implementing 47 representations in the relevant MoarVM directory.
  • Designing containers for GitHub actions
    9 projects | dev.to | 30 Dec 2021
    FROM alpine:latest as base ARG RAKU_RELEASE=2021.12 ENV PKGS="git make gcc musl-dev perl linux-headers bash" RUN apk update && apk upgrade \ && apk add --no-cache $PKGS \ && git clone --depth 1 --branch ${RAKU_RELEASE} https://github.com/MoarVM/MoarVM.git \ && cd MoarVM \ && perl Configure.pl --prefix /usr \ && make --print-data-base \ && make install\ && cd .. \ && git clone --depth 1 --branch ${RAKU_RELEASE} git://github.com/Raku/nqp.git \ && cd nqp \ && perl Configure.pl --backends=moar --prefix /usr \ && make install \ && cd .. \ && git clone --depth 1 --branch ${RAKU_RELEASE} https://github.com/rakudo/rakudo.git \ && cd rakudo \ && perl Configure.pl --backends=moar --prefix /usr \ && make install \ && ls /usr/share/nqp/ FROM alpine:latest ARG UID=1000 LABEL version="0.5.0" maintainer="[email protected]" raku_release=${RAKU_RELEASE} raku_user_uid=${UID} COPY --from=base /usr/lib/libmoar.so /usr/lib COPY --from=base /usr/share/nqp/ /usr/share/nqp COPY --from=base /usr/share/perl6/ /usr/share/perl6 COPY --from=base /usr/bin/moar /usr/bin/nqp /usr/bin/raku /usr/bin/perl6 /usr/bin/rakudo /usr/bin/ RUN mkdir /github \ && addgroup -S raku && adduser -S raku -G raku --uid ${UID} USER raku WORKDIR /home/raku ENTRYPOINT ["raku"]
  • What happened to the Mu MicroVM project?
    2 projects | /r/ProgrammingLanguages | 22 Oct 2021
    Visit the MoarVM project's home page and/or its github repo.
  • Scheme string vector vs list of chars
    1 project | /r/scheme | 25 Aug 2021
    MoarVM's representation is very cool https://github.com/MoarVM/MoarVM/blob/master/docs/strings.asciidoc

What are some alternatives?

When comparing zef and MoarVM you can also consider the following projects:

docker-raku - Tests and experiments for new Raku docker containers

Oberon - Oberon parser, code model & browser, compiler and IDE with debugger

p6-GtkPlus

nqp - NQP

rakudo - 🦋 Rakudo – Raku on MoarVM, JVM, and JS

Inline-Perl5 - Use Perl 5 code in a Raku program

Tomty - Tomty - Raku Test Framework

roast - 🦋 Raku test suite

cache - Cache dependencies and build outputs in GitHub Actions

Sparrow6 - Raku Automation Framework

raku-dist-template - Template for Raku distributions