SaaSHub helps you find the best software and product alternatives Learn more →
Marten Alternatives
Similar projects and alternatives to marten
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
lucky
A full-featured Crystal web framework that catches bugs for you, runs incredibly fast, and helps you write code that lasts.
-
-
-
-
amber
A Crystal web framework that makes building applications fast, simple, and enjoyable. Get started with quick prototyping, less bugs, and blazing fast performance. (by amberframework)
-
crystal-docker-quickstart
A project template for quickly working with the Crystal programming language in a Docker container, no installation needed.
-
Mango
Discontinued Mango is a self-hosted manga server and web reader [Moved to: https://github.com/getmango/Mango] (by hkalexling)
-
-
-
mosquito
A background task runner for crystal applications supporting periodic (CRON) and manually queued jobs (by robacarp)
-
Shivneri
Component based MVC web framework based on fort architecture targeting good code structures, modularity & performance.
-
-
marten discussion
marten reviews and mentions
-
Make Marten Web Framework work with minitest.cr
ENV["MARTEN_ENV"] = "test" require "minitest/autorun" require "marten" require "marten/cli" # Only require those to avoid running Crystal Spec in parallel with minitest require "marten/spec/ext/db/statement" require "marten/spec/client" # Copy from https://github.com/martenframework/marten/blob/main/src/marten/spec.cr module Marten module Spec @@client : Marten::Spec::Client? def self.clear_client : Nil @@client = nil end def self.clear_collected_emails : Nil Marten::Emailing::Backend::Development.delivered_emails.clear end def self.delivered_emails : Array(Emailing::Email) Marten::Emailing::Backend::Development.delivered_emails end def self.client @@client ||= Marten::Spec::Client.new end def self.flush_databases Marten::DB::Connection.registry.values.each do |conn| Marten::DB::Management::SchemaEditor.run_for(conn) do |schema_editor| schema_editor.flush_model_tables end end end def self.setup_databases Marten::DB::Connection.registry.values.each do |conn| if !conn.test_database? raise "No test database name is explicitly defined for database connection '#{conn.alias}', cancelling..." end Marten::DB::Management::SchemaEditor.run_for(conn) do |schema_editor| schema_editor.sync_models end end end end end # Hooks https://github.com/ysbaddaden/minitest.cr/blob/bfc73a6196129e59b6c05d49d69e542f83a5939f/src/test.cr#L24 class Minitest::Test def before_setup # Register applications only once Marten.setup if Marten.apps.app_configs.empty? Marten::Spec.setup_databases end def after_teardown Marten::Spec.flush_databases Marten::Spec.clear_collected_emails Marten::Spec.clear_client DB::Statement.reset_query_count end end require "../src/project"
-
Digging into Marten query sets
The Marten web framework incorporates an intuitive object-relational mapper (ORM), streamlining the development process for users who may not possess extensive knowledge of databases and SQL. To facilitate interactions with collections of model records, Marten introduces a dynamic mechanism called "Query sets". A query set represents a collection of model records in the database. It can have filters, be paginated, sliced, etc. In this guide, we will cover how to leverage such querying capabilities.
-
Marten 0.3 has been officially released!
Check out the Marten GitHub repository
-
Background job processing with Marten and Mosquito
Marten is a web framework written in Crystal that makes building web applications easy and enjoyable. Mosquito is a background task runner for Crystal that uses Redis and that makes it easy to schedule and run tasks asynchronously.
- Marten 0.2.0, A Crystal Web framework
-
Marten 0.2 has been released!
Marten is a Crystal web framework that makes building web applications easy, productive, and fun. The 0.2 release adds key features to the framework such as authentication, email sending, raw SQL query capabilities, ... You can check out the full changelog for an overview of all the new features and changes that are part of this release.
- Marten – The pragmatic web framework
- Marten - The pragmatic web framework
- Marten: The pragmatic web framework
-
A note from our sponsor - SaaSHub
www.saashub.com | 20 Jan 2025
Stats
martenframework/marten is an open source project licensed under MIT License which is an OSI approved license.
The primary programming language of marten is Crystal.