DEV Community

Discussion on: A Future Without Webpack

Collapse
 
alexvpopov profile image
Alex Popov • Edited

I there anyone who has managed to replace webpack/webpacker in a Rails app with pika? If so, please share.

Collapse
 
fredkschott profile image
Fred K. Schott

Pika works with any server, you would just need to install your web_modules directory to somewhere that Rails would serve it to the browser (app/assets/web_modules?) and then just write your JS imports to point to their final location when served.

We have a few examples here: github.com/pikapkg/web/blob/master...
If you do get it working with Rails, would love if you could add it there!