{"id":20803321,"url":"https://github.com/naveed-ahmad/rails_render_async","last_synced_at":"2026-04-22T11:07:16.075Z","repository":{"id":41783253,"uuid":"206887068","full_name":"naveed-ahmad/rails_render_async","owner":"naveed-ahmad","description":null,"archived":false,"fork":false,"pushed_at":"2023-01-20T20:32:30.000Z","size":26,"stargazers_count":2,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-26T22:48:47.127Z","etag":null,"topics":["ajax-requests","polling","rails","render-async","stimulus-controller","turbolinks"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/naveed-ahmad.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-09-06T23:13:18.000Z","updated_at":"2022-10-02T07:54:24.000Z","dependencies_parsed_at":"2023-02-12T05:02:13.673Z","dependency_job_id":null,"html_url":"https://github.com/naveed-ahmad/rails_render_async","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/naveed-ahmad/rails_render_async","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naveed-ahmad%2Frails_render_async","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naveed-ahmad%2Frails_render_async/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naveed-ahmad%2Frails_render_async/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naveed-ahmad%2Frails_render_async/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/naveed-ahmad","download_url":"https://codeload.github.com/naveed-ahmad/rails_render_async/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naveed-ahmad%2Frails_render_async/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32132982,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T08:34:57.708Z","status":"ssl_error","status_checked_at":"2026-04-22T08:34:55.583Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ajax-requests","polling","rails","render-async","stimulus-controller","turbolinks"],"created_at":"2024-11-17T18:49:25.283Z","updated_at":"2026-04-22T11:07:16.056Z","avatar_url":"https://github.com/naveed-ahmad.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rails_render_async\n\nSpeed up rendering Rails pages with this gem( In Rails way ) or use [render_async](https://github.com/renderedtext/render_async) if you don't mind injecting couple of weird script tags in head tag of your page.\n\n## NOTE: I've literally cmd + c / cmd + v code and this readme from [render_async](https://github.com/renderedtext/render_async) gem, without any shame. I did basic testing, no specs for now. So yeah...\n\n`render_async` generate seperate JS function for each async render call, and \n[this](https://github.com/renderedtext/render_async/blob/master/app/views/render_async/_request_jquery.js.erb) \nmixture of JS and Ruby was not for me.\n\nWorkflow:\n\n1. user visits a Rails page\n2. AJAX request on the controller action\n3. controller renders a partial\n4. partials renders in the place where you put `render_async` helper\n\n## Installation\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'rails_render_async'\n```\n\nAnd then execute:\n\n    $ bundle install\n\n## Usage\n\n1. Call `render_async` view helper somewhere in your views (e.g. `app/views/comments/show.html.erb`):\n    ```erb\n    \u003c%= render_async comment_stats_path %\u003e\n    ```\n\n2. Then create a route that will `config/routes.rb`:\n    ```ruby\n    get :comment_stats, controller: :comments\n    ```\n\n3. Fill in the logic in your controller (e.g. `app/controllers/comments_controller.rb`):\n    ```ruby\n    def comment_stats\n      @stats = Comment.get_stats\n\n      render partial: \"comment_stats\"\n    end\n    ```\n\n4. Create a partial that will render (e.g. `app/views/comments/_comment_stats.html.erb`):\n    ```erb\n    \u003cdiv class=\"col-md-6\"\u003e\n      \u003c%= @stats %\u003e\n    \u003c/div\u003e\n    ```\n5. Include this JS file in your app/assets/javascripts/applicaiton.js file \n`//= require bootstrap-input-spinner/src/bootstrap-input-spinner`\n \n## Advanced usage\n\nAdvanced usage includes information on different options, such as:\n\n  - [Passing in a container ID](#passing-in-a-container-id)\n  - [Passing in a container class name](#passing-in-a-container-class-name)\n  - [Passing in HTML options](#passing-in-html-options)\n  - [Passing in an HTML element name](#passing-in-an-html-element-name)\n  - [Passing in a placeholder](#passing-in-a-placeholder)\n  - [Passing in an event name](#passing-in-an-event-name)\n  - [Retry on failure](#retry-on-failure)\n  - [Toggle event](#toggle-event)\n  - [Polling](#polling)\n  - [Handling errors](#handling-errors)\n  - [Caching](#caching)\n  - [Doing non-GET requests](#doing-non-get-requests)\n  - [Using with Turbolinks](#using-with-turbolinks)\n  - [Using with respond_to and JS format](#using-with-respond_to-and-js-format)\n  - [Nested Async Renders](#nested-async-renders)\n  - [Lazy Rendering](#lazy-rendering) \n  - [Configuration](#configuration)\n\n### Passing in a container ID\n\n`render_async` renders an element that gets replaced with the content\nof your request response. In order to have more control over the element\nthat renders first (before the request), you can set the ID of that element.\n\nTo set ID of the container element, you can do the following:\n```erb\n\u003c%= render_async users_path, container_id: 'users-container' %\u003e\n```\n\nRendered code in the view:\n```html\n\u003cdiv id=\"users-container\"\u003e\n\u003c/div\u003e\n\n...\n```\n\n### Passing in a container class name\n\n`render_async` renders an element that gets replaced with the content of your\nrequest response. If you want to style that element, you can set the class name\non it.\n\n```erb\n\u003c%= render_async users_path, container_class: 'users-container-class' %\u003e\n```\n\nRendered code in the view:\n```html\n\u003cdiv id=\"render_async_18b8a6cd161499117471\" class=\"users-container-class\"\u003e\n\u003c/div\u003e\n\n...\n```\n\n### Passing in HTML options\n\n`render_async` can accept `html_options` as a hash.\n`html_options` is an optional hash that gets passed to a Rails'\n`javascript_tag`, to drop HTML tags into the `script` element.\n\nExample of utilizing `html_options` with a `nonce`:\n```erb\n\u003c%= render_async users_path, html_options: { nonce: 'lWaaV6eYicpt+oyOfcShYINsz0b70iR+Q1mohZqNaag=' } %\u003e\n```\n\nRendered code in the view:\n```html\n\u003cdiv id=\"render_async_18b8a6cd161499117471\"\u003e\n\u003c/div\u003e\n\n\u003cscript nonce=\"lWaaV6eYicpt+oyOfcShYINsz0b70iR+Q1mohZqNaag=\"\u003e\n//\u003c![CDATA[\n  ...\n//]]\u003e\n\u003c/script\u003e\n```\n\n### Passing in an HTML element name\n\n`render_async` can take in an HTML element name, allowing you to control\nwhat type of container gets rendered. This can be useful when you're using\n[`render_async` inside a table](https://github.com/renderedtext/render_async/issues/12)\nand you need it to render a `tr` element before your request gets loaded, so\nyour content doesn't get pushed out of the table.\n\nExample of using HTML element name:\n```erb\n\u003c%= render_async users_path, html_element_name: 'tr' %\u003e\n```\n\nRendered code in the view:\n```html\n\u003ctr id=\"render_async_04229e7abe1507987376\"\u003e\n\u003c/tr\u003e\n...\n```\n\n### Passing in a placeholder\n\n`render_async` can be called with a block that will act as a placeholder before\nyour AJAX call finishes.\n\nExample of passing in a block:\n\n```erb\n\u003c%= render_async users_path do %\u003e\n  \u003ch1\u003eUsers are loading...\u003c/h1\u003e\n\u003c% end %\u003e\n```\n\nRendered code in the view:\n```html\n\u003cdiv id=\"render_async_14d7ac165d1505993721\"\u003e\n  \u003ch1\u003eUsers are loading...\u003c/h1\u003e\n\u003c/div\u003e\n\n\u003cscript\u003e\n//\u003c![CDATA[\n  ...\n//]]\u003e\n\u003c/script\u003e\n```\n\nAfter AJAX is finished, placeholder will be replaced with the request's\nresponse.\n\n### Passing in an event name\n\n`render_async` can receive `:event_name` option which will emit JavaScript\nevent after it's done with fetching and rendering request content to HTML.\n\nThis can be useful to have if you want to add some JavaScript functionality\nafter your partial is loaded through `render_async`.\n\nExample of passing it to `render_async`:\n```erb\n\u003c%= render_async users_path, event_name: \"users-loaded\" %\u003e\n```\n\nRendered code in view:\n```html\n\u003cdiv id=\"render_async_04229e7abe1507987376\"\u003e\n\u003c/div\u003e\n\n\u003cscript\u003e\n//\u003c![CDATA[\n  ...\n    document.dispatchEvent(new Event(\"users-loaded\"));\n  ...\n//]]\u003e\n\u003c/script\u003e\n```\n\nThen, in your JS, you could do something like this:\n```javascript\ndocument.addEventListener(\"users-loaded\", function() {\n  console.log(\"Users have loaded!\");\n});\n```\n\nNOTE: Dispatching events is also supported for older browsers that don't\nsupport Event constructor.\n\n### Retry on failure\n\n`render_async` can retry your requests if they fail for some reason.\n\nIf you want `render_async` to retry a request for number of times, you can do\nthis:\n```erb\n\u003c%= render_async users_path, retry_count: 5, error_message: \"Couldn't fetch it\" %\u003e\n```\n\nNow render_async will retry `users_path` for 5 times. If it succedes in\nbetween, it will stop with dispatching requests. If it fails after 5 times,\nit will show an [error message](#handling-errors) which you need to specify.\n\nThis can show useful when you know your requests often fail, and you don't want\nto refresh the whole page just to retry them.\n\n### Toggle event\n\nYou can trigger `render_async` loading by clicking or doing another event to a\ncertain HTML element. You can do this by passing in a selector and an event\nname which will trigger `render_async`. If you don't specify an event name, the\ndefault event that will trigger `render_async` will be 'click' event. You can\ndo this by doing the following:\n\n```erb\n\u003ca href='#' id='detail-button'\u003eDetail\u003c/a\u003e\n\u003c%= render_async comments_path, toggle: { selector: '#detail-button', event: :click } %\u003e\n```\n\nThis will trigger `render_async` to load the `comments_path` when you click the `#details-button` element.\n\nYou can also pass in a placeholder before the `render_async` is triggered. That\nway, the element that started `render_async` logic will be removed after the\nrequest has been completed. You can achieve this behaviour with something like this:\n\n```erb\n\u003c%= render_async comments_path, toggle: { selector: '#detail-button', event: :click } do %\u003e\n  \u003ca href='#' id='detail-button'\u003eDetail\u003c/a\u003e\n\u003c% end %\u003e\n```\n\nAlso, you can mix interval and toggle features. This way, you can turn polling\non, and off by clicking the \"Detail\" button. In order to do this, you need to\npass `toggle` and `interval` arguments to `render_async` call like this:\n\n```erb\n\u003ca href='#' id='detail-button'\u003eDetail\u003c/a\u003e\n\u003c%= render_async comments_path, toggle: { selector: '#detail-button', event: :click }, interval: 2000 %\u003e\n```\n\n### Polling\n\nYou can call `render_async` with interval argument. This will make render_async\ncall specified path at specified interval.\n\nBy doing this:\n```erb\n\u003c%= render_async comments_path, interval: 5000 %\u003e\n```\nYou are telling `render_async` to fetch comments_path every 5 seconds.\n\nThis can be handy if you want to enable polling for a specific URL.\n\nNOTE: By passing interval to `render_async`, initial container element\nwill remain in HTML tree, it will not be replaced with request response.\nYou can handle how that container element is rendered and its style by\n[passing in an HTML element name](#passing-in-an-html-element-name) and\n[HTML element class](#passing-in-a-container-class-name).\n\n### Handling errors\n\n`render_async` let's you handle errors by allowing you to pass in `error_message`\nand `error_event_name`.\n\n- `error_message`\n\n  passing an `error_message` will render a message if the AJAX requests fails for\n  some reason\n  ```erb\n  \u003c%= render_async users_path,\n                   error_message: '\u003cp\u003eSorry, users loading went wrong :(\u003c/p\u003e' %\u003e\n  ```\n\n- `error_event_name`\n\n  calling `render_async` with `error_event_name` will dispatch event in the case\n  of an error with your AJAX call.\n  ```erb\n  \u003c%= render_asyc users_path, error_event_name: 'users-error-event' %\u003e\n  ```\n\n  You can then catch the event in your code with:\n  ```js\n  document.addEventListener('users-error-event', function() {\n    // I'm on it\n  })\n  ```\n\n### Caching\n\n`render_async` can utilize view fragment caching to avoid extra AJAX calls.\n\nIn your views (e.g. `app/views/comments/show.html.erb`):\n```erb\n# note 'render_async_cache' instead of standard 'render_async'\n\u003c%= render_async_cache comment_stats_path %\u003e\n```\n\nThen, in the partial (e.g. `app/views/comments/_comment_stats.html.erb`):\n```erb\n\u003c% cache render_async_cache_key(request.path), skip_digest: true do %\u003e\n  \u003cdiv class=\"col-md-6\"\u003e\n    \u003c%= @stats %\u003e\n  \u003c/div\u003e\n\u003c% end %\u003e\n```\n\n* The first time the page renders, it will make the AJAX call.\n* Any other times (until the cache expires), it will render from cache\n  instantly, without making the AJAX call.\n* You can expire cache simply by passing `:expires_in` in your view where\n  you cache the partial\n\n### Doing non-GET requests\n\nBy default, `render_async` creates AJAX GET requests for the path you provide.\nIf you want to change this behaviour, you can pass in a `method` argument to\n`render_async` view helper.\n\n```erb\n\u003c%= render_async users_path, method: 'POST' %\u003e\n```\n\nYou can also set `body` and `headers` of the request if you need them.\n\n```erb\n\u003c%= render_async users_path,\n                 method: 'POST',\n                 data: { fresh: 'AF' },\n                 headers: { 'Content-Type': 'text' } %\u003e\n```\n\n### Using with Turbolinks\n\nOn Turbolinks applications, you may experience caching issues when navigating\naway from, and then back to, a page with a `render_async` call on it. This will\nlikely show up as an empty div.\n\nIf you're using Turbolinks 5 or higher, you can resolve this by setting Turbolinks\nconfigurtion of `render_async` to true:\n\n```rb\nRenderAsync.configure do |config|\n  config.turbolinks = true # Enable this option if you are using Turbolinks 5+\nend\n```\n\nThis way, you're not breaking Turbolinks flow of loading or reloading a page.\nIt makes it more efficient that the next option that is suggested below.\n\nAnother option:\nIf you want, you can tell Turbolinks to reload your `render_async` call as follows:\n\n```erb\n\u003c%= render_async events_path, 'data-turbolinks-track': 'reload' %\u003e\n```\n\nThis will reload the whole page with Turbolinks.\n\nMake sure to put `\u003c%= content_for :render_async %\u003e` in your base view file in\nthe `\u003chead\u003e` and not the `\u003cbody\u003e`.\n\n### Using with respond_to and JS format\n\nIf you need to restrict the action to only respond to AJAX requests, you'll\nlikely wrap it inside `respond_to`/`format.js` blocks like this:\n\n```ruby\ndef comment_stats\n  respond_to do |format|\n    format.js do\n      @stats = Comment.get_stats\n\n      render partial: \"comment_stats\"\n    end\n  end\nend\n```\n\nWhen you do this, Rails will sometime set the response's `Content-Type` header\nto `text/javascript`. This causes the partial not to be rendered in the HTML.\nThis usually happens when there's browser caching.\n\nYou can get around it by specifying the content type to `text/html` in the\nrender call:\n\n```ruby\nrender partial: \"comment_stats\", content_type: 'text/html'\n```\n\n### Nested Async Renders\n\nIt is possible to nest async templates within other async templates. When doing\nso, another `content_for` is required to ensure the JavaScript needed to load\nnested templates is included.\n\nFor example:\n```erb\n\u003c%# app/views/comments/show.html.erb %\u003e\n\n\u003c%= render_async comment_stats_path %\u003e\n```\n\n```erb\n\u003c%# app/views/comments/_comment_stats.html.erb %\u003e\n\n\u003cdiv class=\"col-md-6\"\u003e\n  \u003c%= @stats %\u003e\n\u003c/div\u003e\n\n\u003cdiv class=\"col-md-6\"\u003e\n  \u003c%= render_async comment_advanced_stats_path %\u003e\n\u003c/div\u003e\n\n\u003c%= content_for :render_async %\u003e\n```\n\n### Lazy Rendering\n\nYou can delay the rendering call until dom don't came in viewport. Less load on server, Just In Time Rendering!\n\nThis gem uses `IntersectionObserver` to check the visiblity of dom and old browsers might not have this api. Put this script tag in \u003chead\u003e tag.\n\n```\n\u003cscript\u003e\n    window.IntersectionObserver || document.write('\u003cscript src=\"https://cdn.rawgit.com/w3c/IntersectionObserver/0cd30fe5/polyfill/intersection-observer.js\"\u003e\u003c\\/script\u003e');\n\u003c/script\u003e\n```\n\nBasic example for lazy rendering:\n\n```erb\n\u003c%# app/views/comments/_comment_stats.html.erb %\u003e\n\n\u003cdiv class=\"col-md-6\"\u003e\n  \u003c%= @stats %\u003e\n\u003c/div\u003e\n\n\u003cdiv class=\"col-md-6\"\u003e\n  \u003c%= render_async comment_advanced_stats_path, lazy_load: true %\u003e\n\u003c/div\u003e\n```\n\nIf you want to lazy load content for hidden element which are shown with some transaction, like bootstrap model, popover, tooltip, dropdown menu, collapse, carousel etc. Then you'll need to pass in the id of part dom( which is shown with transaction ) \n\n```erb\n\u003c%# app/views/comments/_comment_stats.html.erb %\u003e\n\u003cdiv class=\"col-md-6\"\u003e\n  \u003cdiv class=\"dropdown\"\u003e\n    \u003cbutton class=\"btn btn-secondary dropdown-toggle\" type=\"button\" id=\"dropdownMenuButton\" data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\"\u003e\n    Dropdown button\n    \u003c/button\u003e\n    \u003cdiv class=\"dropdown-menu\" aria-labelledby=\"dropdownMenuButton\" id='aysnc-parent'\u003e\n      \u003c%= render_async lazy_load_path, lazy_load: {root: '#aysnc-parent' } %\u003e\n    \u003c/div\u003e\n  \u003c/div\u003e\n\u003c/div\u003e\n```\nWhen user click on dropdown, content of menu will be lazy loaded.\n\nMore [options](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) for lazy loading: \n```erb\n  \u003c%= render_async comments_path, lazy_load: {root: '#aysnc-parent', threshold: 0.5, margin: '2px' } %\u003e\n```\n\n- margin: Margin around the root. Can have values similar to the CSS margin property, e.g. \"10px 20px 30px 40px\" (top, right, bottom, left). The values can be percentages. This set of values serves to grow or shrink each side of the root element's bounding box before computing intersections. Defaults to all zeros\n\n- threshold: Indicate at what percentage of the target's visibility the observer's callback should be executed. The default is 0 (meaning as soon as even one pixel is visible, the callback will be run). A value of 1.0 means that the threshold isn't considered passed until every pixel is visible.\n\n\n### Configuration\n\n`render_async` renders Vanilla JS (regular JavaScript, non-jQuery code)\n**by default** in order to fetch the request from the server.\n\nIf you want `render_async` to use jQuery code, you need to configure it to do\nso.\n\nYou can configure it by doing the following anywhere before you call\n`render_async`:\n```rb\nRenderAsync.configure do |config|\n  config.jquery = true # This will render jQuery code, and skip Vanilla JS code\n  config.turbolinks = false # Enable this option if you are using Turbolinks 5+\nend\n```\n\nAlso, you can do it like this:\n```rb\n# This will render jQuery code, and skip Vanilla JS code\nRenderAsync.configuration.jquery = true\n```\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run\n`rake spec` to run the tests. You can also run `bin/console` for an interactive\nprompt that will allow you to experiment.\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/renderedtext/render_async.\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).\n\n## Contributors\n\nThanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore --\u003e\n| [\u003cimg src=\"https://avatars2.githubusercontent.com/u/3028124?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eNikola Đuza\u003c/b\u003e\u003c/sub\u003e](http://nikoladjuza.me/)\u003cbr /\u003e[💬](#question-nikolalsvk \"Answering Questions\") [💻](https://github.com/renderedtext/render_async/commits?author=nikolalsvk \"Code\") [📖](https://github.com/renderedtext/render_async/commits?author=nikolalsvk \"Documentation\") [👀](#review-nikolalsvk \"Reviewed Pull Requests\") | [\u003cimg src=\"https://avatars0.githubusercontent.com/u/3866868?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eColin\u003c/b\u003e\u003c/sub\u003e](http://www.colinxfleming.com)\u003cbr /\u003e[💻](https://github.com/renderedtext/render_async/commits?author=colinxfleming \"Code\") [📖](https://github.com/renderedtext/render_async/commits?author=colinxfleming \"Documentation\") [💡](#example-colinxfleming \"Examples\") | [\u003cimg src=\"https://avatars2.githubusercontent.com/u/334273?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eKasper Grubbe\u003c/b\u003e\u003c/sub\u003e](http://kaspergrubbe.com)\u003cbr /\u003e[💻](https://github.com/renderedtext/render_async/commits?author=kaspergrubbe \"Code\") | [\u003cimg src=\"https://avatars2.githubusercontent.com/u/163584?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSai Ram Kunala\u003c/b\u003e\u003c/sub\u003e](https://sairam.xyz/)\u003cbr /\u003e[📖](https://github.com/renderedtext/render_async/commits?author=sairam \"Documentation\") | [\u003cimg src=\"https://avatars2.githubusercontent.com/u/3065882?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJosh Arnold\u003c/b\u003e\u003c/sub\u003e](https://github.com/nightsurge)\u003cbr /\u003e[💻](https://github.com/renderedtext/render_async/commits?author=nightsurge \"Code\") [📖](https://github.com/renderedtext/render_async/commits?author=nightsurge \"Documentation\") | [\u003cimg src=\"https://avatars3.githubusercontent.com/u/107798?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eElad Shahar\u003c/b\u003e\u003c/sub\u003e](https://eladshahar.com)\u003cbr /\u003e[💻](https://github.com/renderedtext/render_async/commits?author=SaladFork \"Code\") [💡](#example-SaladFork \"Examples\") | [\u003cimg src=\"https://avatars3.githubusercontent.com/u/232392?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSasha\u003c/b\u003e\u003c/sub\u003e](http://www.revzin.co.il)\u003cbr /\u003e[💻](https://github.com/renderedtext/render_async/commits?author=sasharevzin \"Code\") [📖](https://github.com/renderedtext/render_async/commits?author=sasharevzin \"Documentation\") |\n| :---: | :---: | :---: | :---: | :---: | :---: | :---: |\n| [\u003cimg src=\"https://avatars3.githubusercontent.com/u/50223?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eErnest Surudo\u003c/b\u003e\u003c/sub\u003e](http://elsurudo.com)\u003cbr /\u003e[💻](https://github.com/renderedtext/render_async/commits?author=elsurudo \"Code\") | [\u003cimg src=\"https://avatars1.githubusercontent.com/u/334809?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eKurtis Rainbolt-Greene\u003c/b\u003e\u003c/sub\u003e](https://kurtis.rainbolt-greene.online)\u003cbr /\u003e[💻](https://github.com/renderedtext/render_async/commits?author=krainboltgreene \"Code\") | [\u003cimg src=\"https://avatars2.githubusercontent.com/u/59744?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRichard Schneeman\u003c/b\u003e\u003c/sub\u003e](https://www.schneems.com)\u003cbr /\u003e[📖](https://github.com/renderedtext/render_async/commits?author=schneems \"Documentation\") | [\u003cimg src=\"https://avatars1.githubusercontent.com/u/75705?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRichard Venneman\u003c/b\u003e\u003c/sub\u003e](https://www.cityspotters.com)\u003cbr /\u003e[📖](https://github.com/renderedtext/render_async/commits?author=richardvenneman \"Documentation\") | [\u003cimg src=\"https://avatars3.githubusercontent.com/u/381395?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eFilipe W. Lima\u003c/b\u003e\u003c/sub\u003e](https://github.com/filipewl)\u003cbr /\u003e[📖](https://github.com/renderedtext/render_async/commits?author=filipewl \"Documentation\") | [\u003cimg src=\"https://avatars0.githubusercontent.com/u/3135638?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJesús Eduardo Clemens Chong\u003c/b\u003e\u003c/sub\u003e](https://github.com/eclemens)\u003cbr /\u003e[💻](https://github.com/renderedtext/render_async/commits?author=eclemens \"Code\") | [\u003cimg src=\"https://avatars3.githubusercontent.com/u/1935686?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRené Klačan\u003c/b\u003e\u003c/sub\u003e](https://github.com/reneklacan)\u003cbr /\u003e[💻](https://github.com/renderedtext/render_async/commits?author=reneklacan \"Code\") |\n| [\u003cimg src=\"https://avatars1.githubusercontent.com/u/1313442?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eGil Gomes\u003c/b\u003e\u003c/sub\u003e](http://gilgomes.com.br)\u003cbr /\u003e[📖](https://github.com/renderedtext/render_async/commits?author=gil27 \"Documentation\") | [\u003cimg src=\"https://avatars0.githubusercontent.com/u/6081795?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eKhoa Nguyen\u003c/b\u003e\u003c/sub\u003e](https://github.com/ThanhKhoaIT)\u003cbr /\u003e[💻](https://github.com/renderedtext/render_async/commits?author=ThanhKhoaIT \"Code\") [📖](https://github.com/renderedtext/render_async/commits?author=ThanhKhoaIT \"Documentation\") | [\u003cimg src=\"https://avatars2.githubusercontent.com/u/8645918?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ePreet Sethi\u003c/b\u003e\u003c/sub\u003e](https://www.linkedin.com/in/preetsethila/)\u003cbr /\u003e[💻](https://github.com/renderedtext/render_async/commits?author=preetsethi \"Code\") |\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaveed-ahmad%2Frails_render_async","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnaveed-ahmad%2Frails_render_async","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaveed-ahmad%2Frails_render_async/lists"}