forem VS tokio

Compare forem vs tokio and see what are their differences.

tokio

A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ... (by tokio-rs)
Our great sponsors
  • PopRuby - Clothing and Accessories for Ruby Developers
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
forem tokio
196 195
21,479 24,231
0.7% 2.7%
9.8 9.5
7 days ago 7 days ago
Ruby Rust
GNU Affero General Public License v3.0 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.

forem

Posts with mentions or reviews of forem. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-29.
  • 🕺🏼 My life update and the Open Source #DEVImpact2023
    2 projects | dev.to | 29 Dec 2023
    This year again, I contributed to DEV with multiples ways, I've contributed very little to the repository, moderated the bad posts quite a bit, and welcomed newcomers to the platform. I feel that a place like this should always be so welcoming to users, so why shouldn't I?
  • 🌟 #DEVImpact2023: A Year of Challenges, Triumphs, and The Future
    2 projects | dev.to | 28 Dec 2023
    docs: making updates to Editor Guide #20258
  • Open Source alternatives to tools you Pay for
    21 projects | dev.to | 8 Dec 2023
    Forem - Open Source Alternative to Circle
  • How to get the count of your followers on dev.to
    3 projects | dev.to | 16 Nov 2023
    Note: There's a PR on the Forem repo open for this. Check out if it has been implemented before trying this!
  • Hacktoberfest contributor on a11y issues
    7 projects | dev.to | 1 Nov 2023
    I have also contributed to other open source projects, including EddieHub, Forem, and my own.
  • GitHub and Developer Ecosystem Control
    9 projects | dev.to | 28 Sep 2023
    Part of the major userbase pull in GitHub revolves around hosting a considerable number of popular projects including Angular, React, Kubernetes, cpython, Ruby, tensorflow, and well even the software that powers this site Forem.
  • 📢 Announcing New Local Dev Setup Options for Contributing to Forem!
    5 projects | dev.to | 21 Sep 2023
    Want the convenience of containerized setup without having to deal with learning and running Docker commands? dip gem is here to help. The folks at Evil Martians devised this CLI tool that provides a native-like interaction. Once you have Docker installed and our repository cloned:
  • How to Create a Good Pull Request Template (and Why You Should Add Gifs)
    2 projects | dev.to | 14 Apr 2023
    At OpenSauced, we used forem’s Pull Request template for inspiration for our template.
  • Let’s scan DEV’s forem project with Bearer and analyze the results
    3 projects | dev.to | 30 Mar 2023
    Using open-source tools to test open-source projects feels like a great match. It wasn't until the other day that I remembered that the team behind DEV had open-sourced the bones of the site as Forem. To make it an even better match, the stack matches up nicely with the currently supported languages included in Bearer's new free and open-source security application security testing (SAST) tool. Unlike many security tools, this one is really focused on helping devs make sense of security concerns in an actionable way.
  • Building a dev.to analytics dashboard using OpenSearch
    6 projects | dev.to | 25 Mar 2023
    It's pretty clear the API is still heavily under development by the Forem team, evidenced by the "Tags" endpoint disappearing while I was writing this article (to be fair it wasn't THAT useful anyway) and that there's a fairly new pull request for removing V0 endpoints I think it's likely that access to the OpenAPI docs (and followers and articles) will stay around. I'm thinking I could pull out some more data based around the endpoints I do have, but I do need to do some thinking about. Also, given the API is under active development, and there's a fair amount of data DEV has access to in the analytics console that I don't have access to via the API, it would be nice to extend my dashboard to include this if it does get updated.

tokio

Posts with mentions or reviews of tokio. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-21.
  • I pre-released my project "json-responder" written in Rust
    11 projects | dev.to | 21 Jan 2024
    tokio / hyper / toml / serde / serde_json / json5 / console
  • Cryptoflow: Building a secure and scalable system with Axum and SvelteKit - Part 0
    12 projects | dev.to | 4 Jan 2024
    tokio - An asynchronous runtime for Rust
  • Top 10 Rusty Repositories for you to start your Open Source Journey
    11 projects | dev.to | 19 Dec 2023
    3. Tokio
  • API Gateway, Lambda, DynamoDB and Rust
    5 projects | dev.to | 5 Dec 2023
    The AWS SDK makes use of the async capabilities in the Tokio library. So when you see async in front of a fn that function is capable of executing asynchronously.
  • The More You Gno: Gno.land Monthly Updates - 6
    8 projects | /r/Gnoland | 30 Nov 2023
    Petar is also looking at implementing concurrency the way it is in Go to have a fully functional virtual machine as it is in the spec. This would likely attract more external contributors to developing the VM. One advantage of Rust is that, with the concurrency model, there is already an extensive library called Tokio which he can use. Petar stresses that this isn’t easy, but he believes it’s achievable, at least as a research topic around determinism and concurrency.
  • Consuming an SQS Event with Lambda and Rust
    7 projects | dev.to | 3 Nov 2023
    Another thing to point out is that async is a thing in Rust. I'm not going to begin to dive into this paradigm in this article, but know it's handled by the awesome Tokio framework.
  • netcrab: a networking tool
    4 projects | dev.to | 14 Oct 2023
    So I started by using Tokio, a popular async runtime. The docs and samples helped me get a simple outbound TCP connection working. The Rust async book also had a lot of good explanations, both practical and digging into the details of what a runtime does.
  • Thread-per-Core
    3 projects | news.ycombinator.com | 6 Oct 2023
    Regarding the quote:

    > The Original Sin of Rust async programming is making it multi-threaded by default. If premature optimization is the root of all evil, this is the mother of all premature optimizations, and it curses all your code with the unholy Send + 'static, or worse yet Send + Sync + 'static, which just kills all the joy of actually writing Rust.

    Agree about the melodramatic tone. I also don't think removing the Send + Sync really makes that big a difference. It's the 'static that bothers me the most. I want scoped concurrency. Something like <https://github.com/tokio-rs/tokio/issues/2596>.

    Another thing I really hate about Rust async right now is the poor instrumentation. I'm having a production problem at work right now in which some tasks just get stuck. I wish I could do the equivalent of `gdb; thread apply all bt`. Looking forward to <https://github.com/tokio-rs/tokio/issues/5638> landing at least. It exists right now but is experimental and in my experience sometimes panics. I'm actually writing a PR today to at least use the experimental version on SIGTERM to see what's going on, on the theory that if it crashes oh well, we're shutting down anyway.

    Neither of these complaints would be addressed by taking away work stealing. In fact, I could keep doing down my list, and taking away work stealing wouldn't really help with much of anything.

  • PHP-Tokio – Use any async Rust library from PHP
    7 projects | news.ycombinator.com | 27 Aug 2023
    The PHP <-> Rust bindings are provided by https://github.com/Nicelocal/ext-php-rs/ (our fork of https://github.com/davidcole1340/ext-php-rs with a bunch of UX improvements :).

    php-tokio's integrates the https://revolt.run event loop with the https://tokio.rs event loop; async functionality is provided by the two event loops, in combination with PHP fibers through revolt's suspension API (I could've directly used the PHP Fiber API to provide coroutine suspension, but it was a tad easier with revolt's suspension API (https://revolt.run/fibers), since it also handles the base case of suspension in the main fiber).

  • How should I structure a medium sized crate?
    3 projects | /r/rust | 14 Aug 2023
    For example, check out src/io/mod.rs or src/fs/mod.rs, which has a lot of re-exports. See also the standard library, e.g., src/sync/mod.rs.

What are some alternatives?

When comparing forem and tokio you can also consider the following projects:

async-std - Async version of the Rust standard library

Rocket - A web framework for Rust.

hyper - An HTTP library for Rust

futures-rs - Zero-cost asynchronous programming in Rust

smol - A small and fast async runtime for Rust

rayon - Rayon: A data parallelism library for Rust

actix-web - Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.

crossbeam - Tools for concurrent programming in Rust

glommio - Glommio is a thread-per-core crate that makes writing highly parallel asynchronous applications in a thread-per-core architecture easier for rustaceans.

sqlx - 🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.

MIO - Metal I/O library for Rust.

bevy - A refreshingly simple data-driven game engine built in Rust