Ask A Question

Notifications

You’re not receiving notifications from this thread.

How to import javascript from Gems with webpacker

Alex Deering asked in Ruby

Ive come across an issue where some gems I want to use (specifically social-share-button) need to have a javascript file imported but with webpacker in rails 6, not quite sure how to do that now

Reply

Just import it in app/javascripts/packs/application.js

import "../myfile"

And put your code in app/javascripts/myfile.js

Also check out https://gorails.com/episodes/webpacker-javascript-in-rails-6

Reply

ok so just downloaded the javascript file from the gem and did that and everything works...thanks

Reply

Yep, you can do that. Or if they have a node package, you can use that instead.

Reply

How to use in the project?

Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 84,387+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.