DEV Community

Discussion on: Code smart, not hard

Collapse
 
solkimicreb profile image
Miklos Bertalan

What tools do you use for the MVC pattern? Just plain DOM and JS?

Collapse
 
zimski profile image
CHADDA Chakib

I use rails for the regular parts like loging and forms, react for isolated components when I need real-time or a intensive Ui.

To test everything, I use system test, to test my react components and it's interactions with rails.

I think it's a nice spot, This make me a lot more productive.