tailwindcss-rails VS request.js

Compare tailwindcss-rails vs request.js and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
tailwindcss-rails request.js
20 11
1,352 363
2.4% 3.0%
8.3 5.3
about 14 hours ago 19 days ago
Ruby JavaScript
GNU General Public License v3.0 or later 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.

tailwindcss-rails

Posts with mentions or reviews of tailwindcss-rails. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-09.
  • Is the default importmap method unrealistic in the most popular real world use cases?
    5 projects | /r/rails | 9 May 2023
    You can't use additional CSS packages (like Flowbite) with the official tailwindcss-rails gem. According to this answered issue, you should either give up importmap and use a bundler, or use a CSS file from CDN - which is not ideal (unnecessary classes won't be purged this way).
  • How to bundle assets in a Rails engine
    3 projects | dev.to | 10 Jan 2023
    You first install your asset handlers as you need them for your project. They can be anything from rails/jsbundling-rails and rails/tailwindcss-rails to webpacker or something custom.
  • Setup TailwindCSS, postcss and esbuild on Rails 7
    12 projects | dev.to | 12 Oct 2022
    Preconfigured TailwindCSS from TailwindCSS-rails ready to use out of the box, pass --css tailwind as an option.βœ…
  • User notifications with Rails, Noticed, and Hotwire
    4 projects | dev.to | 21 Mar 2022
    Thanks to the magic of Rails, the scaffold generator gives us almost everything we need to start creating messages and associating them with users. Because we are using Tailwind via the tailwindcss-rails gem, the scaffold generator also includes some nice looking base styles too.
  • Pagination and infinite scrolling with Rails and the Hotwire stack
    7 projects | dev.to | 4 Feb 2022
    Because we are using Tailwind via the tailwindcss-rails gem, the scaffold generator applies some basic Tailwind styling to generated views, so we have nice looking Widget pages right out of the box.
  • Launching Multiple Processes with a Single Command in Rails
    2 projects | dev.to | 31 Jan 2022
    Here's a simple way to achieve this, inspired by the tailwindcss-rails gem.
  • How to Install Shoelace with Rails 7, esbuild, and Tailwind JIT
    1 project | dev.to | 13 Jan 2022
    For more documentation on tailwind installation: https://github.com/rails/tailwindcss-rails
  • Upgrading from Rails 6.x Webpacker to Rails 7 Importmaps
    7 projects | dev.to | 7 Jan 2022
    gem "rails", "~> 7.0.0" # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] gem "sprockets-rails" # Use postgresql as the database for Active Record gem "pg", "~> 1.1" # Use the Puma web server [https://github.com/puma/puma] gem "puma", "~> 5.0" # Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails] gem "importmap-rails" # Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev] gem "turbo-rails" # Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev] gem "stimulus-rails" # Use Tailwind CSS [https://github.com/rails/tailwindcss-rails] gem "tailwindcss-rails" # Build JSON APIs with ease [https://github.com/rails/jbuilder] gem "jbuilder" gem "redis", "~> 4.0"
  • Rails 7 Tailwind Scaffold Question
    3 projects | /r/rails | 23 Dec 2021
    When you generate an app with rails new --css=tailwind without a JS option, you get the tailwindcss-rails gem which includes the new scaffold generators. When you pass in a JavaScript option as well, you get Tailwind installed via cssbundling-rails, which does not include built-in generators since it offers more than just Tailwind as an option.
  • Tailwind-styled scaffold templates when using tailwindcss-rails
    1 project | /r/rails | 29 Sep 2021

request.js

Posts with mentions or reviews of request.js. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-29.
  • Help importing fetch on stimulus
    1 project | /r/rails | 24 Mar 2023
    For some extra help with crsf tokens. I would recommend the request.js library in the rails GitHub. https://github.com/rails/request.js
  • Build a Table Editor with Trix and Turbo Frames in Rails
    1 project | dev.to | 2 Nov 2022
    We will now connect our toolbar's table button to the server-side controller action we have just written. To do this, we first need to bring Rails' request.js library into the project. This library will help us administer post requests from the client, including proper CSRF-tokens, etc.:
  • how to implement a bootstrap dropdown in a button
    2 projects | /r/rails | 29 Aug 2022
    Then, you will need to use fetch or other libs like rails/request.js (https://github.com/rails/request.js) to send a patch request with formData to your model's update path (usually something like /fruits), this is to update your model data. If you are using scaffolded controller, you should have respond_to js configured for you by default. If not, remember to add respond_to :js to your controller, and list data attributes you wanted to return from the server.
  • Reactiveness In Rails
    2 projects | /r/rails | 23 Aug 2022
    Stimulus and request.js should get you about 90% of the way for your example
  • Pagination and infinite scrolling with Rails and the Hotwire stack
    7 projects | dev.to | 4 Feb 2022
    One way to work around this is described in Dale’s article. In it, a Stimulus controller and request.js are used to insert a Turbo Stream header into GET requests, getting Turbo to see the request as a Turbo Stream request despite not originating from a form submission.
  • Is it possible to trigger turbo_stream update from Stimulus controller?
    1 project | /r/rails | 9 Jan 2022
    The Rails.ajax function comes from the @rails/ujs package, which isn't Turbo-aware. You should be using @rails/request.js instead, which can execute Turbo Stream commands:
  • Rails 7.0 has been released
    4 projects | /r/ruby | 16 Dec 2021
    It's not part of Hotwire, but supplemental for when you want to make AJAX requests from Stimulus or whatever. https://github.com/rails/request.js
  • Using stimulus to fetch api in ajax manner
    1 project | /r/rails | 15 Nov 2021
    So with our applications we've started using request.js to make JS based requests to the applications, it's super handy and very easy to use.
  • Infinite Scroll with HOTWire - Part 2: Adding Stimulus
    2 projects | dev.to | 17 Oct 2021
    request.js is a minimalistic JavaScript pacakge that is set to replace Rails UJS in the near future. We will be using it to fetch new pages from the server. Let's install the package
  • Multi-Factor Authentication for Rails with WebAuthn and Devise
    10 projects | dev.to | 5 Oct 2021
    First, we will add the necessary NPM packages. We will use @github/webauthn-json as a nice wrapper for the WebAuthn API and @rails/request.js for easier requests to the backend (with built-in Turbo Stream support).

What are some alternatives?

When comparing tailwindcss-rails and request.js you can also consider the following projects:

cssbundling-rails - Bundle and process CSS in Rails with Tailwind, PostCSS, and Sass via Node.js.

hotwire-example-template - A collection of branches that transmit HTML over the wire.

Pagy - πŸ† The Best Pagination Ruby Gem πŸ₯‡

vite_ruby - ⚑️ Vite.js in Ruby, bringing joy to your JavaScript experience

Foreman - Manage Procfile-based applications

webauthn-with-devise - The companion app for the article "Secure authentication for Rails with WebAuthn and Devise"

sprockets-rails - Sprockets Rails integration

webauthn-json - πŸ” A small WebAuthn API wrapper that translates to/from pure JSON using base64url.

flutter-roadmap - Roadmap for Flutter developers in 2020

importmap-rails - Use ESM with importmap to manage modern JavaScript in Rails without transpiling or bundling.

hide-kitchen-new