DEV Community

Cover image for Using Webpack with Ruby on Rails
Andy Leverenz
Andy Leverenz

Posted on • Originally published at web-crunch.com on

Using Webpack with Ruby on Rails

Webpack, although a little hard to configure, remains the leading edge build tool for modern web development. This post/video guides you through adding Webpack to an older Ruby on Rails 5.2 project as well as the latest Ruby on Rails 6 beta release.

The demos here are meant to be a high-level overview of how Webpack can be used inside Ruby on Rails no matter the version.

We’ll leverage the webpacker gem (now part of Rails 6 by default) to incorporate more modern JavaScript into an already seasoned framework. The point of adding webpack is to add new technologies that are so new that they need to be compiled down into more legacy code. Doing this is no easy feat but the gem will take all the hard configurations out of the picture and ultimately just work.

With Webpacker you gain these features and more:

  • webpack 4.x.x
  • ES6 with babel
  • Automatic code splitting using multiple entry points
  • Stylesheets – Sass and CSS
  • Images and fonts
  • PostCSS – Auto-Prefixer
  • Asset compression, source-maps, and minification
  • CDN support
  • React, Angular, Elm and Vue support out-of-the-box
  • Rails view helpers

A lot of these things Rails already takes care of with the asset pipeline. You can optionally choose to use the asset pipeline for images, fonts, css, and more leaning on webpacker for JavaScript. This will be the new Rails 6 default.

Common questions

Why do I need webpack with Rails if the asset pipeline is already present?

Realistically, in most cases, you don’t but it does make it easier to reach for modern front-end frameworks like Vue.js or React.js with minimal setup time. The asset pipeline still works as it should alongside the new webpack workflow. All assets associated with webpack now live inside an app/javascript directory.

Does webpack depend on the asset pipeline? Do they conflict?

The webpacker gem doesn’t depend on the asset pipeline directly though it does hook into a few rake commands bundled with each Rails installation rails assets:precompile for instance will fire off both the asset pipeline compilation and the webpack command to compile down all assets in a given project utilizing both. They only conflict if your code does. It’s a good practice to separate concerns. I tend to author all javascript in app/javascript and then reach for the asset pipeline app/assets/ for any css, images, or other assets the project I’m working on might require.

Do I even need the asset pipeline with the webpack addition?

Realistically, no but the asset pipeline has a bunch of handy features for rendering assets in views you or your team may be accustomed to. Luckily you can do the same with assets inside app/javascript. Rendering images, assets, CSS, JavaScript and more is very possible.

Shameless plug time

If you liked this post, I have more videos on YouTube and here on my blog. Want more content like this in your inbox? Subscribe to my newsletter and get it automatically.

Check out my course

https://i2.wp.com/i.imgur.com/KIaaJEB.jpg?ssl=1

Want to learn Ruby on Rails from the ground up? Check out my upcoming course called Hello Rails.

Follow @hello_rails and myself @justalever on Twitter.

The post Using Webpack with Ruby on Rails appeared first on Web-Crunch.

Top comments (0)