amazing video chris, would love to see more vue or react with rails
@GorailsTV7 жыл бұрын
Definitely more to come!
@pging83285 жыл бұрын
what do you mean by hot module reloading?
@ArunKumar-tb8vv3 жыл бұрын
Thanks a lot for your this effort. You are rocking man
@camilosad19797 жыл бұрын
Good to see rails going in that direction. Do you see any advantages in using all the js stuff integrated in a rails app rather than having two separated applications (rails api / js frontend) ?
@GorailsTV7 жыл бұрын
Yes, in the sense that really the frontend depends directly upon the backend. You aren't forced into building a full single-page app this way either. The nice part is that you can do all your work (frontend and backend) together in one repo and for small teams that's great. If you're big enough you have a separate frontend team and a separate backend team, then splitting them up might be helpful, but you'll have lots of other things to address then as well.
@sashacooper93265 жыл бұрын
This video was a lifesaver :)
@olegnikitashin7 жыл бұрын
Clear and straightforward as always! Thanks!
@am-mn2sr7 жыл бұрын
Hi there, thanks for sharing this video. I have a question about Turbolinks. I want to completely deprecate assets/js, so I import turbolinks by yarn. However it doesn't work. I'm pretty sure it's imported correctly.
@HamzaKhan-uy4td6 жыл бұрын
Hi, I installed Webpacker but it did not create the .bin folder in my node modules folder, Can you help me out what script is in node-modules/.bin/webpack-dev-server Thanks
@slim_mike7 жыл бұрын
thanks! greetings from Venezuela!
@abbas_hashmat6 жыл бұрын
i followed every step but 'Hello World from Webpacker' didn'y showed ..... am using rails 5.2 is there any solution
@al-iom3 жыл бұрын
please make a video of three js in rails especialy how to import gltf models localy. thanks
@eonacademy50365 жыл бұрын
You are my hero! Thank you very much, I have learnt a lot watching your videos. Greetings =)=)....
@GorailsTV5 жыл бұрын
Thanks! I appreciate you!
@mass139827 жыл бұрын
Excellent video as usual :)
@totechess4 жыл бұрын
I am trying to do that with the template material-dashboard that I have in vendor folder. I haven't been able to do it. I have added the folder vendor to config/webpacker.conf. I copied the js files in order that the template had, so my application.js has something like that import("material-dashboard/assets/js/core/jquery.min.js") import("material-dashboard/assets/js/core/popper.min.js") import("material-dashboard/assets/js/core/bootstrap-material-design.min.js") import("material-dashboard/assets/js/plugins/perfect-scrollbar.jquery.min.js") import("material-dashboard/assets/js/plugins/moment.min.js") import("material-dashboard/assets/js/plugins/sweetalert2.js") import("material-dashboard/assets/js/plugins/jquery.validate.min.js") But it doesn't work. Could you help me to apply a template in a vendor folder to the rails app?
@Sindoku6 жыл бұрын
Why didn't u just do this with React instead of Vue?
@GorailsTV6 жыл бұрын
I much prefer Vue over React, plus there are plenty of other people making tutorials on React.
@bryanperez41485 жыл бұрын
Great explanation thank you
@dvdpausini7 жыл бұрын
Thanks for video, excellent video, from Brazil
@ouyangtao7 жыл бұрын
Nice Intro...cheers!
@a1exxero7 жыл бұрын
Great stuff! Thank you
@jesuseduardoricosandoval596 жыл бұрын
I'm doing the Shine project from Rails, Angular, Postgres and Bootstrap 2nd Edition but when I installed angular (v6) I run "rails s" and "bin/webpack-dev-server" I got it an error (Object is not a function). So, someone can help me! Please respond me to give more details and code
@GorailsTV6 жыл бұрын
Try looking or asking on the webpacker Issues on Github.
@jesuseduardoricosandoval596 жыл бұрын
@@GorailsTV thanks a Lot ! I will do it !
@fabriziobertoglio73427 жыл бұрын
Amazing tshirt
@markschnabel1205 жыл бұрын
SAVAGE
@foliwe7 жыл бұрын
Too many technologies to follow. Running two separate servers for the sample rails app, am not really a fan of. Let's keep RubyOnRails simple.
@GorailsTV7 жыл бұрын
I feel you, it's getting more and more complex every day and without enough value to justify it in most cases.
@andrewshatnyy6 жыл бұрын
Webpack + IE8 don't go together. Good luck writing products for real life customers.
@GorailsTV6 жыл бұрын
There's really not much you need to do for IE8. You just make sure you're running the proper babel packages for IE8 compatibility and the JS will run just fine. You might want to look into that functionality.