TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Web apps built with Ruby on Rails

152 pointsby kyrylo4 months ago

26 comments

kyrylo4 months ago
I’ve always wondered who else uses Ruby on Rails besides the usual names like GitHub, Shopify, Basecamp, etc.<p>Last month, I built a directory of web apps built with the Rails framework.<p>With Rails 8 released last year, the framework is stronger than ever. Some even say it’s experiencing a renaissance.<p>There are already 21 submissions, and if you use Rails, you’re welcome to add your app or website!
评论 #42657119 未加载
评论 #42657435 未加载
评论 #42657078 未加载
评论 #42657352 未加载
评论 #42661145 未加载
评论 #42662933 未加载
评论 #42656738 未加载
评论 #42660298 未加载
devKnight4 months ago
I&#x27;ve always been interested in rails, even though my career has gone the JS&#x2F;TS route. Think i might finally take the plunge and try to build some random stuff with it. See how far i can get by looking at code examples and asking gpt &quot;how do you do x in rails&quot; etc.<p>Really love that it seems to just be a complete toolbox, especially for a solo project.<p>Also seeing more and more rails roles out there, but obviously don&#x27;t have 5+ years with the framework
评论 #42657077 未加载
评论 #42656994 未加载
评论 #42657012 未加载
thatguyagain4 months ago
Rails 8 made me love Rails again after a few years working with other tools. The new direction is just perfect, specially for solo developers. The &#x27;solid trifecta&#x27; in combination with the simplicity of using sqlite3, the new built in auth solution, Kamal... everything, so f*ing good.
评论 #42657017 未加载
评论 #42656919 未加载
评论 #42657311 未加载
werdnapk4 months ago
I&#x27;ve used nothing but Rails since about 2004. Of course I&#x27;ve been integrating and playing with various JS frameworks over the same time period, but the only things that&#x27;s remained consistent is Rails as the base. I&#x27;ve gone through at least 4 or 5 different JS frameworks in that time and that aspect of development has grown rather tiresome.
maxehmookau4 months ago
Been using Rails professionally for 13 years (currently at GitLab) and I still don&#x27;t think anything else beats it for developer happiness and productivity.<p>It cuts through all the mess of modern web development so well and makes turning an idea in to something deployable incredibly easy.
评论 #42660597 未加载
评论 #42657234 未加载
gvurrdon4 months ago
The main application I have to work with now ended up, for various reasons, as a Rails API with a Vue client.<p>The Rails part has been easy to maintain and adapt to users&#x27; frequent changes, the main issues being feature requests for very complicated queries which then end up being slow. Vue has taken up a lot of time with the migration from 2 -&gt; 3 (still not finished).
douchescript4 months ago
What’s the best way to use JavaScript on rails these days?<p>I’ve been using rails for over 20 years and still love it but the JavaScript story has always been in flux in bad ways. I don’t like the turbo stuff or stimulus. Basically just want to be able to add some nice charts, and some enhancements like confirmation for links. Basically just build admins with it so the caching for partial html just isn’t part of the game. Looked at upgrading to rails 8 now but the javascript in last version of rails was fragmented and complicated, so looking to find a good way to do it in a standard way now, hopefully next version of rail’s doesn’t change everything again.
评论 #42657678 未加载
评论 #42658070 未加载
ramesh314 months ago
It&#x27;s such a shame that a big successful Rails or Django equivalent never really materialized in the Node world. It&#x27;s not like nobody tried. There were so many times it seemed like one was gaining traction, then it would be abandoned or zombified or commercialized, and it just never happened. I really can&#x27;t understand why.
评论 #42788278 未加载
评论 #42657659 未加载
Syntaf4 months ago
Cool site! Love seeing what others have built using rails.<p>I&#x27;ve been working on a membership management platform [1] using Rails + Hotwire Turbo &amp; Stimulus and I can&#x27;t imagine how long it would have taken me using other frameworks around.<p>Want a rich text editor? Just use action text. Want document storage? Active storage is easy. Job queues? Mailers? Caching? Integration testing? All easy to do.<p>I love that Rails is &quot;omakase&quot;, once you lean into the ecosystem it&#x27;s great that most things just... work.<p>[1] <a href="https:&#x2F;&#x2F;embolt.app" rel="nofollow">https:&#x2F;&#x2F;embolt.app</a>
Alifatisk4 months ago
Rails is truly experiencing a renaissance and after giving it a try, I understand why
salzig4 months ago
btw, there is also <a href="https:&#x2F;&#x2F;usingrails.com" rel="nofollow">https:&#x2F;&#x2F;usingrails.com</a>
评论 #42658246 未加载
inthebin4 months ago
Can someone provide a reason for why anyone should be using Rails? I&#x27;m always curious why people love context switching between multiple programming languages.
评论 #42657385 未加载
评论 #42657185 未加载
评论 #42657628 未加载
hk13374 months ago
I&#x27;ve always loved ruby. Sinatra was my jam long ago but after awhile it felt like just remaking Rails when I could just Rails. Then datamapper project went defunct and needing to use ActiveRecord if I didn&#x27;t want manually do sql seemed even more like I should just use Rails.
cudgy4 months ago
Rails is probably one of the most complete, turnkey frameworks I’ve ever used for web development. When I first encountered it, within a day or two, I was building full stack crud apps.<p>However, what shocked me, having come from a C&#x2F;C++ background were the thousands of dependencies for the most simple of apps. This scared me as how could I possibly understand the security holes and inner workings of all these dependencies.<p>Another problem I ran into was the tendency of rails developers to create monolithic applications with little separation between the UI, middle tier layer, and the data model layer. When I would be writing client side apps and interfacing with rails back ends, The rails teams would always implement new functionality into the website and then separately add functionality to an API. I think this comes down to the way people learn to develop in rails as rails teaches a monolithic method. I would always try to point out that creating an API where all of the logic was held, would make life so much easier for them, and they would agree, but continue to build The monolithic website with a separate API.
aqme284 months ago
I really miss using Rails. It is seriously so enjoyable to quickly build stuff with it.
globular-toast4 months ago
One thing I find frustrating with Django is there&#x27;s not really a place to put business logic. Ask 3 Django people and you&#x27;ll get 3 different answers, and often different answers from the same person! That&#x27;s not a good architecture IMO. It should be obvious where stuff goes. Some say it&#x27;s not Django&#x27;s concern, Django is just a web framework, but Django doesn&#x27;t sit nicely at the edge of an architecture where it belongs at all.<p>Is Rails better in this respect?
stux4 months ago
Rails definitely seems optimized for <i>creating</i> code, but how is it at maintaining code? I&#x27;ve never used it, but it seems like Ruby&#x27;s dynamic types would make it really challenging to do large refactors. What techniques do rails developers use?
评论 #42658931 未加载
tamersalama4 months ago
Back in the day, I remember an application that &#x27;analyzed&#x27; websites for their Rails hallmarks. I don&#x27;t know if Rails apps are as distinct nowadays.
sagolikasoppor4 months ago
I have always looked at Rails with love, but since I mainly build heavy client side SPA apps behind a login it has never been a good choice for me.
评论 #42657719 未加载
评论 #42658668 未加载
xyzzy47474 months ago
I don&#x27;t know why anyone would want to code with a language that isn&#x27;t statically type safe at compile time in this day and age.
评论 #42657447 未加载
评论 #42657285 未加载
评论 #42657293 未加载
评论 #42657453 未加载
wavemode4 months ago
The Search tab is taking close to 30s to load... I&#x27;m suspecting this site itself also uses Rails
评论 #42657277 未加载
评论 #42657035 未加载
neuroelectron4 months ago
&gt;website down<p>oh deer.
评论 #42657232 未加载
评论 #42657379 未加载
npalli4 months ago
This site won&#x27;t load for me, that in itself strongly suggests it was built on Ruby on Rails.
评论 #42657152 未加载
评论 #42657165 未加载
评论 #42657255 未加载
评论 #42657338 未加载
vivzkestrel4 months ago
can we get a web apps built with svelte&#x2F;sveltekit?
rockyj4 months ago
The app does not load for now. I guess they used Rails :)
评论 #42657308 未加载
评论 #42657236 未加载
marban4 months ago
2006 called — they said scaffolding is still the cheat code for building something working, stable, simple, and maintainable.