ExpressJS vs. Actix-Web: performance and running cost comparison
1–10 of 58 posts
Re: ExpressJS vs. Actix-Web: performance and running cost comparison
#2Rust is really fast, especially compared to Node. This is an easy benchmark to win. So why not use a framework that's actually secure.
Re: ExpressJS vs. Actix-Web: performance and running cost comparison
#3I understand that using Actix really highlights the speed advantage of Rust... but I think it's irresponsible to encourage rewrites in Rust using a framework that's dead because the developer decided to quit instead of fix security issues[0]. The last thing we need is a bunch of new Rust devs rewriting their perfectly fine Node code using an insecure framework. Rust is really fast, especially compared to Node. This i…
Re: ExpressJS vs. Actix-Web: performance and running cost comparison
#4I understand that using Actix really highlights the speed advantage of Rust... but I think it's irresponsible to encourage rewrites in Rust using a framework that's dead because the developer decided to quit instead of fix security issues[0]. The last thing we need is a bunch of new Rust devs rewriting their perfectly fine Node code using an insecure framework. Rust is really fast, especially compared to Node. This i…
The project seems active: https://github.com/actix/actix-web
Re: ExpressJS vs. Actix-Web: performance and running cost comparison
#5I understand that using Actix really highlights the speed advantage of Rust... but I think it's irresponsible to encourage rewrites in Rust using a framework that's dead because the developer decided to quit instead of fix security issues[0]. The last thing we need is a bunch of new Rust devs rewriting their perfectly fine Node code using an insecure framework. Rust is really fast, especially compared to Node. This i…
Your claims about being dead are wildly exaggerated and misleading.
You're in NYC as am I. The Rust NYC meet-up is a great way to connect and learn more.
Re: ExpressJS vs. Actix-Web: performance and running cost comparison
#6Re: ExpressJS vs. Actix-Web: performance and running cost comparison
#7Is there any surprise here? Anecdotally Node seems fast for interpreters, but of course a compiled systems language like Rust blows it away. That’s a known trade off you make when picking a technology like Node; there are plenty of other reasons to use it.
Re: ExpressJS vs. Actix-Web: performance and running cost comparison
#8Re: ExpressJS vs. Actix-Web: performance and running cost comparison
#9I understand that using Actix really highlights the speed advantage of Rust... but I think it's irresponsible to encourage rewrites in Rust using a framework that's dead because the developer decided to quit instead of fix security issues[0]. The last thing we need is a bunch of new Rust devs rewriting their perfectly fine Node code using an insecure framework. Rust is really fast, especially compared to Node. This i…
It's the only web framework in Rust that has thus far reached maintenance mode because it became feature complete, was heavily vetted by many teams, and is architecturally mature. It's not just really fast but has all of the bells and whistles. Further, people are actively contributing to the project. Replacing remaining sound yet unsafe blocks with fully safe rust, without taxing performance, is the remaining, ongoi…
I’d say they’re outdated. The project after the original author was frustrated with some in the community, found a way to allow the project to continue, which is overall good, but still a very disappointing episode.
Re: ExpressJS vs. Actix-Web: performance and running cost comparison
#10Is there any surprise here? Anecdotally Node seems fast for interpreters, but of course a compiled systems language like Rust blows it away. That’s a known trade off you make when picking a technology like Node; there are plenty of other reasons to use it.
I can only think of ecosystem size and language familiarity. Authors addressed development speed and found that Rust's static typing and compiler checks reduced development time vs JS. What other reasons did you have in mind?
I know Rust alright, and I like it. I’d rather write TypeScript for most web applications and I write good and solid TypeScript a lot faster than I do Rust. (Helps that I can easily write the same language and use many of the same libraries on my frontend, too.)