importmap-rails VS chokidar

Compare importmap-rails vs chokidar and see what are their differences.

importmap-rails

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

chokidar

Minimal and efficient cross-platform file watching library (by paulmillr)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
importmap-rails chokidar
25 23
1,007 10,528
2.0% -
8.2 5.0
about 2 months ago 27 days ago
Ruby JavaScript
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.

importmap-rails

Posts with mentions or reviews of importmap-rails. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-15.
  • RubyJS-Vite
    11 projects | news.ycombinator.com | 15 Apr 2024
    With importmaps (https://github.com/rails/importmap-rails) and Hotwire (https://hotwired.dev/), you write plain js and serve it.

    Also packages are served via CDN. There is no tree shaking. Rails got rid of the whole bundling step.

  • First commits in a Ruby on Rails app
    6 projects | dev.to | 17 Jan 2024
    Importmap audit - “checks the NPM registry for known security issues”
  • Asset compilation taking ~ 12 mins
    2 projects | /r/rails | 6 Jul 2023
    It worked, but JS changes were not coming through. Digging into the Importmap docs (see 'sweeping the cache', it monitors changes according to the setting config.importmap.cache_sweepers. So, by adding the locations where I have my JS files, I also got JS changes passed through.
  • 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 TypeScript, or anything that requires pre-compile, with importmap. answered issue
  • Ruby on Rails with React on Typescript using importmaps
    3 projects | dev.to | 1 May 2023
    Let's begin by installing the necessary dependencies. The first gem generates the importmap object, manages caching, and helps with library installations, among other things. I recommend reading the entire readme to become familiar with its capabilities. The second gem will be discussed later, it is used to compile JSX files. Gemfile
  • Pirep.io collects the unpublished, local knowledge on public, private, and unmapped airport that anyone can contribute to
    4 projects | /r/flying | 13 Apr 2023
    Yeah, those were brand new right around the time I started this project a few years ago with Rails 7 (or was it 6.1?). I actually ended up removing them in favor of importmap-rails since I wanted as simple of a frontend as possible and I wasn't sure of relying on what was, at the time, a brand new way of doing frontend work. Things change so quickly in JS-land that I'm always hesitant to make something a dependency unless it has a strong track record of being continuously maintained.
  • Dusting off my rails knowledge, need some tips / guidance on rails 7 and production
    10 projects | /r/rails | 7 Apr 2023
    source "https://rubygems.org" git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby "3.1.0" # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" gem "rails", "~> 7.0.4", ">= 7.0.4.2" # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] gem "sprockets-rails" # Use sqlite3 as the database for Active Record gem "sqlite3", "~> 1.4" # 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" # Build JSON APIs with ease [https://github.com/rails/jbuilder] gem "jbuilder" gem "mongoid" gem "mongoid-grid_fs" gem 'bootstrap', '~> 5.2.2' #sourced from https://github.com/twbs/bootstrap-rubygem gem 'rack-cors' # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ] # Reduces boot times through caching; required in config/boot.rb gem "bootsnap", require: false
  • Simple Modern JavaScript Using JavaScript Modules and Import Maps
    9 projects | news.ycombinator.com | 16 Feb 2023
  • A powerful search feature with what Rails provides out of the box
    6 projects | dev.to | 19 Jan 2023
    Also, installing StimulusReflex seems quite not easy for the moment: It seems there are some quirks along the way if you're using import-maps for managing javascript dependencies as I do. Embracing the Rails way at least prevents you from this sort of issue.
  • Stimulus MultiSelect
    3 projects | dev.to | 22 Nov 2022
    If you're using importmap-rails, you'll need to pin stimulus-multiselect:

chokidar

Posts with mentions or reviews of chokidar. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-18.
  • The best testing setup for frontends, with Playwright and NextJS
    5 projects | dev.to | 18 Apr 2024
    For this, we'll use chokidar - more specifically the chokidar-cli package. chokidar is probably the most useful file watching library for the nodejs ecosystem and it will serve us well.
  • Why Does 'Is-Number' Package Have 59M Weekly Downloads?
    2 projects | news.ycombinator.com | 4 Mar 2024
    tailwindcss -> chokidar -> braces -> fill-range -> to-regex-range -> is-number

    is-number was first published 9 years ago, when these kind of micro-packages were in vogue. braces was added as a dependency to chokidar over 6 years ago [1]. And if it ain't broke, don't fix it. I don't think the average JS dev today is going out and pulling in these deps.

    [1] https://github.com/paulmillr/chokidar/commit/cbdf25563cfff7f...

  • How nodemon works?
    1 project | /r/node | 19 Aug 2023
    The watching magic is really in the https://www.npmjs.com/package/chokidar library
  • Dart 3.1 and a retrospective on functional style programming in Dart
    7 projects | news.ycombinator.com | 17 Aug 2023
    > It’s typical to listen to this stream of events and use chained if-else statements to determine an action based on the type of the events that occur.

    You'd think something like directory watching would have a clear set of events that would make nice objects with consistent meanings, but in my experience file watching gets crazy complicated, and can have all sorts of edge cases.

    Just take a looked here for all the various edge cases that crop up: https://github.com/paulmillr/chokidar/issues

    Then you have linux, windows, macos, and maybe you want to abstract over some underlying implementation like chokidar vs fb/watchman vs webpack/watchpack. Every new OS release could also cause things to change.

    So usually its going to be a bunch of if-else statements hacked together to get around edge cases, and have to be revisited later on.

    Any attempt to abstract this into objects, just obfuscates things. And OO forces you to name things, when in fact they might be un-nameable. `FileSystemModifyEventExceptWhenXAndYAndSometimesZ`.

    The behavior might rely on a series of events together, so the object hierarchy must be re-worked.

    OO has this rosy idea that we just have to come up with the perfect hierarchy, but things change in unexpected ways, and everything must have a descriptive noun.

  • Is there anyway to auto reload the browser page when using express?
    2 projects | /r/learnjavascript | 13 Jun 2023
    Next, you can use a library like chokidar to listen for changes in your source directory. Create a ws server, and whenever a file changes, send a message.
  • How does nodemon works under the hood?
    4 projects | /r/node | 14 Mar 2023
    As another has mentioned, nodemon uses chokidar under the hood for the actual file watching part.
  • Turbowatch – Extremely fast alternative to Nodemon
    7 projects | /r/javascript | 13 Mar 2023
    At the end of the day, ironically, Nodemon does not even implement file watching functionality. It is a thin wrapper around chokidar (see source code), and the way it is being used is neither efficient (CPU and your battery usage) or performant. So it is not a false argument, just perhaps not the most appealing.
  • dúvida provavelmente idiota
    1 project | /r/brdev | 23 Jan 2023
  • How is React's Hot Module Reloading implemented (at a medium-high level of detail)?
    3 projects | /r/reactjs | 15 Nov 2022
    for file watching, it might use something similar to https://www.npmjs.com/package/chokidar
  • Setup TailwindCSS, postcss and esbuild on Rails 7
    12 projects | dev.to | 12 Oct 2022
    First, we need to install chokidar to enable watching and automatically refreshing our files.

What are some alternatives?

When comparing importmap-rails and chokidar you can also consider the following projects:

jsbundling-rails - Bundle and transpile JavaScript in Rails with esbuild, rollup.js, or Webpack.

Filehound - Flexible and fluent interface for searching the file system

esbuild-rails - Esbuild Rails plugin

Nodemon.io - Monitor for any changes in your node.js application and automatically restart the server - perfect for development

esbuilder - Integrate esbuild into Rails

fs-extra - Node.js: extra methods for the fs object like copy(), remove(), mkdirs()

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

Watch-fn

esbuild-live-reload

filenamify - Convert a string to a valid safe filename

webpack - A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.

globby - User-friendly glob matching