Slim VS Ruby on Rails

Compare Slim vs Ruby on Rails and see what are their differences.

Slim

Slim is a template language whose goal is to reduce the syntax to the essential parts without becoming cryptic. (by slim-template)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Slim Ruby on Rails
30 467
5,271 54,865
0.2% 0.6%
7.8 10.0
about 1 month ago 5 days ago
Ruby Ruby
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.

Slim

Posts with mentions or reviews of Slim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-01.
  • Building a syntax highlighting extension for VS Code
    12 projects | dev.to | 1 Mar 2024
    I spent a few days of my spare time building a VS Code extension that would bring better syntax highlighting for the Slim template language to the editor. I quite enjoyed most of the process so I’d like to share what I learned.
  • Rails 7.1 Released
    8 projects | news.ycombinator.com | 5 Oct 2023
    I think they mean Server Side Rendering (normal rails controllers/views), and Slim is just the name of the templating engine. It's a little nicer than the default ERB. https://github.com/slim-template/slim

    There's also SSR with react and other js frameworks, but I don't think that's what they meant.

  • How to build a website without frameworks and tons of libraries
    17 projects | news.ycombinator.com | 4 Jul 2023
    I use something very similar on https://lunar.fyi and https://lowtechguys.com but I wouldn’t call this “simple” anymore.

    They use Jinja templating, I prefer Slim (https://github.com/slim-template/slim#syntax-example) which has a more Pythonic syntax (there is plim [0] in Python for that)

    I use Tailwind as well for terse styling and fast experimentation (allows me to write a darkMode-aware and responsive 100 line CSS in a single line with about 10 classes)

    For interaction I can write CoffeeScript directly in the page [1] and have it compiled by plim.

    I run a Caddy static server [2] and use Syncthing [3] to have every file save deployed instantly to my Hetzner server.

    I use entr [4] and livereloadx [5] to rebuild the pages and do hot reload on file save. All the commands are managed in a simple Makefile [6]

    ———

    You can already see how the footnotes take up a large chunk of this comment, this is not my idea of simple. Sure, the end result is readable static HTML and I never have to fight obscure React errors, but it’s a high effort setup for starters.

    Simple for me would be: write markdown files for pages, a simple CSS for general styling (should be optional), click to deploy on my domain. Images should automatically be resized to multiple sizes and optimized, videos re-encoded for smaller filesize etc.

    I have mostly implemented that for myself (https://notes.alinpanaitiu.com/How%20I%20write%20this%20blog...) but it feels fragile. I’d rather pay for a professional solution.

    [0] https://plim.readthedocs.io/en/latest/

    [1] https://github.com/FuzzyIdeas/lowtechguys/blob/main/src/rcmd...

    [2] https://caddyserver.com/docs/command-line#caddy-file-server

    [3] https://syncthing.net

    [4] https://github.com/eradman/entr

    [5] https://nitoyon.github.io/livereloadx/

    [6] https://github.com/FuzzyIdeas/lowtechguys/blob/main/Makefile

  • Do Modern Programming Languages Have to Care About Line Length?
    2 projects | /r/ProgrammingLanguages | 5 Jun 2023
    Checkout slim https://github.com/slim-template/slim it's a templating language
  • Hotwire Question - Controller Lifecycle
    1 project | /r/rails | 18 Feb 2023
    And this is what the HTML looks like (I'm using slim):
  • How to use View Transitions in Hotwire Turbo
    10 projects | dev.to | 16 Feb 2023
    The template renders the tag and inside it the link and the counter itself (the Slim template language and Tailwind styling are used here, hopefully the notation is sufficiently self-explaining):
  • Slim: A HTML Templating Language
    1 project | dev.to | 9 Jan 2023
    In this part of the series, let's explore another popular templating language, Slim.
  • Pug: A HTML Templating Language
    1 project | dev.to | 3 Jan 2023
    Templating languages are widely used in Web development and two of the most popular ones are Pug and Slim. In this series, we're going to learn the basics of these two and hopefully they would help improve your workflow further.
  • Template Engine with percent sign in Rails?
    1 project | /r/rubyonrails | 5 Jul 2022
    You may want to checkout slim I'v tried ERB, SLIM, and HAML and absolutely sware by slim it's very easy to use and saves a ton of typing compared to ERB.
  • Styling Simple Form forms with Tailwind
    4 projects | dev.to | 20 Jun 2022
    This config sets a ”medium“ font weight for our form labels by default. Now, suppose we want a specific input’s label to be bold instead, we might want to try the following naive approach (we’re using the Slim template notation here):

Ruby on Rails

Posts with mentions or reviews of Ruby on Rails. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-31.
  • GitHub Incident with Issues, API Requests and Pull Requests
    1 project | news.ycombinator.com | 5 Apr 2024
    [0] is a my favorite demonstration of it.

    [0]: https://github.com/rails/rails/commit/b83965785db1eec019edf1...

  • Client side Git hooks 101
    2 projects | dev.to | 31 Mar 2024
    Here's a real life example: Imagine a Ruby on Rails app on which a team of developers are working. The code is hosted on GitLab and all the work is coordinated using GitLab issues. In other words: For every commit, there's an associated issue and the issue number acts as a sort of primary key for documentation, time reporting and so forth. This convention has a few advantages, most notably the ability to easily learn more about how, when and by whom features were implemented as well as how this implementation came to be.
  • 16 Best Ruby Frameworks For Web Development [2024]
    6 projects | dev.to | 11 Mar 2024
    Ruby on Rails is regarded as one of the best ruby frameworks. It was the primary language in developing big projects such as Twitter and helped the language boost the community. Often referred to as “Rails,” Ruby on Rails is a web development framework with an MVC control structure and currently running its 6.1 version. The 16-year-old language has dramatically influenced the web development structures and managing databases, web pages, and other components on a web application.
  • More control over enum in Rails 7.1
    1 project | dev.to | 29 Feb 2024
    In Rails 7.1, a new option _instance_methods is introduced, allowing developers to opt-out of the automatic generation of instance methods for enums. When enum is defined with _instance_methods: false, Rails will no longer generate methods like pending?, processed?, etc.
  • Ruby on Rails load testing habits
    5 projects | news.ycombinator.com | 25 Jan 2024
    Rails isn't super opinionated about database writes, its mostly left up to developers to discover that for relational DBs you do not want to be doing a bunch of small writes all at once.

    That said it specifically has tools to address this that started appearing a few years ago https://github.com/rails/rails/pull/35077

    The way my team handles it is to stick Kafka in between whats generating the records (for us, a bunch of web scraping workers) and and a consumer that pulls off the Kafka queue and runs an insert when its internal buffer reaches around 50k rows.

    Rails is also looking to add some more direct background type work with https://github.com/basecamp/solid_queue but this is still very new - most larger Rails shops are going to be running a second system and a gem called Sidekiq that pulls jobs out of Redis.

  • DHH installing Campfire (37s ONCE #1) [video]
    1 project | news.ycombinator.com | 19 Jan 2024
    I'm looking forward to see what extractions from this will land on rails. For example: https://github.com/rails/rails/issues/50454
  • First commits in a Ruby on Rails app
    6 projects | dev.to | 17 Jan 2024
    Here is what strict_loading does (source):
  • Continuous Deployment with GitHub Actions and Kamal
    4 projects | dev.to | 7 Jan 2024
    Kamal is a wonderfully simple way to deploy your applications anywhere. It will also be included by default in Rails 8. Kamal is trivial, but I don’t recommend using it on your development machine.
  • What's Coming in Rails 8
    1 project | news.ycombinator.com | 5 Jan 2024
    Here's the GitHub milestone I've based this article on — https://github.com/rails/rails/milestone/87
  • Rails 8 Plan
    1 project | news.ycombinator.com | 27 Dec 2023

What are some alternatives?

When comparing Slim and Ruby on Rails you can also consider the following projects:

Liquid - Liquid markup language. Safe, customer facing template language for flexible web apps.

Roda - Routing Tree Web Toolkit

Haml - HTML Abstraction Markup Language - A Markup Haiku

Hanami - The web, with simplicity.

Hamlit - High Performance Haml Implementation

Sinatra - Classy web-development dressed in a DSL (official / canonical repo)

Sanitize - Ruby HTML and CSS sanitizer.

Cuba - Rum based microframework for web development.

Tilt - Generic interface to multiple Ruby template engines

CodeBehind Framework - CodeBehind library is a modern backend framework. This library is a programming model based on the MVC structure, which provides the possibility of creating dynamic aspx files in .NET Core and has high serverside independence.

tachyons - Functional css for humans

Padrino - Padrino is a full-stack ruby framework built upon Sinatra.