Simple Form VS Cocoon

Compare Simple Form vs Cocoon and see what are their differences.

Simple Form

Forms made easy for Rails! It's tied to a simple DSL, with no opinion on markup. (by heartcombo)

Cocoon

Dynamic nested forms using jQuery made easy; works with formtastic, simple_form or default forms (by nathanvda)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Simple Form Cocoon
13 7
8,190 3,078
0.1% -
4.3 0.0
4 days ago 8 months 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.

Simple Form

Posts with mentions or reviews of Simple Form. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-23.
  • Internationalize and Humanize your Ruby on Rails application
    2 projects | dev.to | 23 Aug 2023
    I also tend to use gems like simple_form to generate my form HTML, and this saves me from having to maintain a lot of view code to outputting translated content onto forms. Also simple_form has it's own i18n convention that compliments the Rails default pretty well.
  • AppDev Week 2
    1 project | dev.to | 10 Jan 2023
  • Rails simple_form gem: Unable to render validation messages
    1 project | /r/rails | 31 Dec 2022
    I followed the RailsCasts tutorial and its GitHub page to set up the gem in my application and used it for all of the models in my application. It was working perfectly fine showing the default error message at the top and the validation message at the bottom of their respective fields.
  • Updating a Booking Status
    1 project | dev.to | 6 Dec 2022
    Okay now for those "buttons". We don't want just a normal button or link though. This is where we need the booking update form. Let's use simple_form_for (check out the docs here).
  • #1 Made easy form in Rails with Simple Form - Gem Weekly
    2 projects | dev.to | 19 Nov 2022
    There are many ways to create a form in Rails, whether you want to create a form with Form builder from Rails itself or maybe using third party gem like simple_form. Of course, simple_form is not the only option we have to build form in rails, there are alternatives out there such as formtastic, cocoon, nested_form, etc. However, in this post I'm going to give you a basic use case to use simple_form in Rails application.
  • Reusable form elements
    1 project | /r/rails | 28 Sep 2022
    I usually go with simple_form, I customise my forms by configuring it and letting it handle the repeated rendering.
  • How to wrap select field in div in SimpleForm?
    1 project | /r/rails | 25 Jul 2022
  • Styling Simple Form forms with Tailwind
    4 projects | dev.to | 20 Jun 2022
    Simple Form gem
  • From partials to ViewComponents: writing reusable front-end code in Rails
    11 projects | dev.to | 3 Jun 2022
    The biggest unclear area that we saw related to view components were forms. There were glimpses of compatibility issues with Rails form helpers in the documentation and we saw a recent effort of the team to mitigate them. Moreover, we were used to building forms with Simple Form which added another variable to the equation. And, in general, we considered the Rails form builders (as well as the Simple Form builder) a system of form-related components in the first place so we were unsure how this would fit into the View Components ecosystem or whether we should even try to do that.
  • Simple Form
    1 project | dev.to | 14 Apr 2022
    Learn more about simple form: 1) https://github.com/heartcombo/simple_form 2) https://www.youtube.com/watch?v=NfZk74R2Oi4&t=5s

Cocoon

Posts with mentions or reviews of Cocoon. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-18.
  • Rails nested form (new gem with Stimulus)
    2 projects | dev.to | 18 Jun 2023
    Nested forms are forms that handle nested models and attributes in one form; e.g. a project with its tasks or an invoice with its line items. Before Rails 6, Cocoon is a good choice for creating dynamic nested forms. But Cocoon needs jQuery to work well, it's a very old library on modern-day frontend frameworks. When Stimulus is came out, Rails devs is suggested to use Stimulus as Javascript library in their projects. So, I created a gem for handling dynamic nested forms with Stimulus JS.
  • Is there an easy gem or workflow to manage form fields for `has_many`?
    5 projects | /r/rails | 15 Mar 2023
    On a previous project I used Cocoon which makes it simple to add a button that adds an additional set of fields for a nested object.
  • I'm looking for a solution or strategies for viewing and managing related records in a single view
    2 projects | /r/rails | 11 Dec 2022
    You can use the Cocoon gem to have nested stuff that can be all posted back at once and update multiple related tables. Necessary setup includes on the models having appropriate accepts_nested_attributes_for entries for the various has_many associations that would link to your sub-forms.
  • Dynamic nested forms with Turbo
    1 project | dev.to | 3 Jun 2022
    Prior to the advent of Turbo and Stimulus, my go-to for creating dynamic nested forms was Cocoon which has been around a while and uses jQuery. Tried and true.
  • Can the Cocoon Gem do this ?
    1 project | /r/rails | 18 Jan 2022
    The Cocoon Gem does something similar, it allows to easily add associated resources to an object. But can it allow creation of other object within the form of another object ?
  • How can I append a copy of existing form field on a button click but with incrementing counter?
    1 project | /r/rails | 5 Dec 2021
    For dynamic forms my usual go-to is Cocoon. https://github.com/nathanvda/cocoon
  • Use a nested dynamic form with a has_many :through association in Rails.
    2 projects | dev.to | 17 Jan 2021
    To add and remove recipe ingredients, we're going to use my favorite gem for handling this. The gem is called cocoon. Cocoon defines two helper methods, link_to_add_association and link_to_remove_association, these are aptly named because what they do is provide links that, when clicked, will either build a new association and create the appropriate fields or will create a link with the ability to mark an association for deletion.

What are some alternatives?

When comparing Simple Form and Cocoon you can also consider the following projects:

Formtastic - A Rails form builder plugin with semantically rich and accessible markup.

Reform - Form objects decoupled from models.

Rails Bootstrap Forms - Official repository of the bootstrap_form gem, a Rails form builder that makes it super easy to create beautiful-looking forms using Bootstrap 5.

ActiveForm - Create nested forms with ease.

Abracadabra

ComfyBootstrapForm - Rails form builder for Bootstrap 4 markup that actually works!