dart_frog VS templates

Compare dart_frog vs templates and see what are their differences.

dart_frog

A fast, minimalistic backend framework for Dart 🎯 (by VeryGoodOpenSource)

templates

Railway starters (by railwayapp)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
dart_frog templates
18 271
1,712 323
2.9% 1.2%
9.6 4.3
7 days ago 30 days ago
Dart
MIT License 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.

dart_frog

Posts with mentions or reviews of dart_frog. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-30.
  • Dart on the Server: Exploring Server-Side Dart Technologies in 2024
    4 projects | dev.to | 30 Jan 2024
    DartFrog
  • Dart Fastest Growing Language in 2023
    3 projects | /r/dartlang | 6 Dec 2023
    Dart is still mostly for Flutter, but we're seeing it move into the server side as well with projects like Serverpod and Dart Frog.
  • Dart Frog real world implementation
    2 projects | /r/dartlang | 16 Dec 2022
    Has anyone used Dart Frog in a real world application? Is it viewed as production ready? Can you build a stand alone executable and deploy that directly or does it have to have a reverse proxy in front of it .(I'm thinking Nginx). I'm trying to build my own API for a Flutter application and while I'd like to do everything in one language, Go looks like the better option for the API since ease of deployment is important to me. I want non-technical people to be able to deploy this and having a single application that can be deployed without a reverse proxy is really attractive in that area but then I found Dart Frog so I'm willing to give it a shot if it can do what I need.
    2 projects | /r/dartlang | 16 Dec 2022
    We’re working on multipart form data support (https://github.com/VeryGoodOpenSource/dart_frog/issues/296) but in the meantime you can use https://pub.dev/packages/shelf_multipart.
  • What Backend would you recommend.
    2 projects | /r/FlutterDev | 14 Dec 2022
    There's also Dart Frog if you want to keep everything in Dart, but i do not have experience with it so can't recommend either way.
  • Dart in backend??
    2 projects | /r/dartlang | 1 Dec 2022
    Dart Frog: https://dartfrog.vgv.dev/
  • Serverside Dart
    5 projects | dev.to | 17 Nov 2022
    dart_frog doesn't support it yet, you can track the progress at dart_frog#296.
    5 projects | dev.to | 17 Nov 2022
    In this blog, I will talk about the benchmarks of Flask (Python), Express (JavaScript), Shelf (Dart), dart_frog (Dart) and Conduit (Dart), and my opinions on Dart on the server side.
  • Ask HN: What is the future of Swift on the server-side?
    2 projects | news.ycombinator.com | 15 Nov 2022
    Dart has some backend projects and support and is statically typed.

    See Very Good Ventures own Dart Frog:

    https://github.com/VeryGoodOpenSource/dart_frog

  • Ask HN: Why isn't Dart more popular?
    2 projects | news.ycombinator.com | 25 Oct 2022
    I’ve been using Dart/Flutter for over a year now building an open source iOS/Android/Web app. In general, Dart is a solid language, and we enjoy writing code in it. The package management, for example is comparable to other best in class managers, like Rust’s Cargo and a huge leap forward from languages like Python. All the tooling (linting, formatter) takes the lessons Google learned from Go and applies them to Dart.

    Additionally, It’s both an interpreted (with JIT) and a compiled language. Flutter uses this to hot reload code in development, but also to ship a leaner binary in production. On the server, native binaries are great for CLI tools for easy deployment, and the JIT is great for servers where processes are longer running and performance is more important than process size. Although it’s reasonably fast either way.

    That being said, it’s a pretty boring language. It doesn’t have many expressive features to reduce boilerplate. While it does have reflection, no one uses it because it can’t be used in Flutter when compiling native binaries. Very few people are willing to make packages that don’t work in Flutter. People generally resort to code gen, which is clunky and adds another process to development.

    On the server, there are not many options. The ‘shelf’ package is the default, but it falls short in many areas, making developers cobble together different packages. There are others, the one I’m watching is Frog[0], but adoption is slow. However, it is pretty much just another Next.js style clone, not adding anything novel to the space.

    My hope is that the cloud providers will roll out native Dart support to their FaaS products, so I can at least share my model code between apps and the backend. However, the dream (well, my dream at least) is to have a full end-to-end Dart/Flutter solution that is real-time/reactive and not REST-based. Something like a programmable Firebase where I don’t have to deal with un/marshalling data myself all the time. I think that will get Flutter devs enough reason to move to Dart on the backend.

    [0] https://dartfrog.vgv.dev/

templates

Posts with mentions or reviews of templates. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-15.
  • How to Deploy your fullstack website - My approach
    3 projects | dev.to | 15 Mar 2024
    Railway is a platform that provides hosting solutions for full-stack web applications. It offers developers an easy way to deploy and manage their applications without worrying about infrastructure management. it also supports various programming languages, frameworks, and databases, making it suitable for a wide range of projects. it also simple to use and it also has a free tier which is has a little benefit than Render.
  • The 2024 Web Hosting Report
    37 projects | dev.to | 20 Feb 2024
    Platform as a Service (PaaS) is a term that captures tools built for developers to use where they don’t need devops engineers to deploy to the cloud. Heroku was the “category-defining” product here, and modern successors include Vercel, Render, Railway, Replit, platform.sh, Aptible, Northflank, and more. We have to say that there are some amazing products in this category. Developer Experience is at a premium!
  • Top 5 Ways To Host Your Full-Stack App For Free 🚀✹
    4 projects | dev.to | 20 Dec 2023
    Railway is a platform that allows you to easily deploy web apps and APIs. It offers a free tier of $5 worth of free usage per month when you sign up.
  • No changes detected with MAKEMIGRATION command after moving to new DataBase
    2 projects | /r/django | 9 Dec 2023
    So this is what I did 1. Connected to the POSTGRES database on railway.app. 2. Ran first migration command for Django (after initiating project) 3. Removed the Entire DataBase on Railway (to see how Django responds) 4. Created a New Database again on the railway.app 5. Updated the variables for new DB credentials in Django 6. After Running the DEVELOPMENT server, I Found the Session Table Missing Error 7. Tried MAKE MIGRATIONS command, result (No changes detected)
  • Restore or Migrate your MySQL Database to Railway
    2 projects | dev.to | 3 Nov 2023
    Railway is a serverless platform that makes it easy to deploy and manage applications and databases. It offers a variety of features, including automatic scaling, high availability, and support for a variety of programming languages and frameworks.
  • How I Built & Grew CoverLetterGPT to 5,000 Users and $200 MRR
    6 projects | dev.to | 25 Oct 2023
    The Server and Postgres Database are hosted on https://railway.app, with the client on Netlify.com’s free tier.
  • Brand new `Rlim` online markdown writing service
    5 projects | /r/Markdown | 13 Oct 2023
    Hosted on railway.app
  • Docker on Ubuntu 22.10: running mysql:8.0.34-debian with custom config, socket, database and log files reside on host machine.
    3 projects | dev.to | 21 Sep 2023
    Python, Flask: Railway.app deployment and Railway's Nixpacks Docker image build tool. -- I've successfully deployed my Australian postcodes API project to https://railway.app. I did have some problem during deployment. I'm describing how I've addressed this problem. In the process, we're also covering the following: â“” running Railway's own Nixpacks Docker build tool locally on Ubuntu 22.10. ⓶ Override the Nixpacks-built Docker image's CMD: we look at three (3) ways to run the Flask CLI command venv/bin/flask update-postcode, and similarly, we look at how to override the start command gunicorn wsgi:app --preload specified in the Nixpacks required Procfile.
  • Motivation for people learning python on their own - It worked for me
    2 projects | /r/learnpython | 14 Sep 2023
    A website that allows students to find the easiest exams at my university. This was pretty easy to build in HTML/CSS once I had gathered the data (basically just web-scraping and understanding the University API). Relevant python modules were requests, pandas and flask. I then hosted the website so I can actually show it to people (railway.app was my host of choice).
  • [Discussion] Best developer-experience (DX) PaaS solution?
    2 projects | /r/devops | 12 Sep 2023
    - Railway.app did the best job on DX, I can deploy my services to railway.app in minutes without having to do any Google search. But it has longer API response time because at the moment it only support US region if I'm correct

What are some alternatives?

When comparing dart_frog and templates you can also consider the following projects:

supabase - The open source Firebase alternative.

nixpacks - App source + Nix packages + Docker = Image

vercel - Develop. Preview. Ship.

flyctl - Command line tools for fly.io services

melos - 🌋 A tool for managing Dart projects with multiple packages. With IntelliJ and Vscode IDE support. Supports automated versioning, changelogs & publishing via Conventional Commits.

sidekiq - Sidekiq worker on Render

shelf - Web server middleware for Dart

quick-scan-flutter

mkdocs-material - Documentation that simply works

quick_blue - A cross-platform (Android/iOS/macOS/Windows/Linux) BluetoothLE plugin for Flutter

quick_notify - A cross-platform (Android/iOS/Web/Windows/macOS/Linux) notification plugin for Flutter

Dokku - A docker-powered PaaS that helps you build and manage the lifecycle of applications