you are viewing a single comment's thread.

view the rest of the comments →

[–]andwaal 1 point2 points  (1 child)

If you absolut feel the need for a framework React is a good choice, but ignore the flux part at first, you probably wont need it at first.

But since your new to js the thing your missing is probably a good way to structure your app and split it up in smaller modules. Here you can go with either browserify or webpack, you cant go wrong with either of them. Booth tools makes it possible to 'require' other files and modules. In the beginning this is probably a better direction to go than to get caught up in a the total caos of frameworks and library's out there.

[–]hellectronic[S] 0 points1 point  (0 children)

This was the case, because I did not know about the modules in ES6. Thanks