@pavanmehta
JS Development and Everything in Between
Nothing here yet.
Nothing here yet.
No blogs yet.
JS can be weird at times. I wanted to try my hands on Scala and I found it weird because it had too much syntax to remember and the dev has the liberty to follow imperative(OO) or functional approach or both. A good language should enforce things so that very few things remain as best practice. I personally like Python for this very fact. Code won't run w/o indentation and that's how it's.
I personally don't hate jQuery at all. It's the only resort if not building any Single page or complex logic app. It's bad to mix jQuery with react though. Following are the possible reasons: It's useless to add jQuery library, it takes time to download jQuery is slower than vanillaJS. Whenever you can use vanilla easily there ain't no need for jQuery.
I've used both material-ui react and material angular. I also faced the speed issue with material-ui react when I first used it. What you'd be doing wrong is not running webpack in production environment. Development version is usually slow and also shows warnings on console.. Add this line to your webpack.config.js plugins: [ new webpack.DefinePlugin({ 'process.env' : { 'NODE_ENV' : JSON .stringify( 'production' ) } }) ], Also read about how to optimize your react app here.. http://moduscreate.com/optimizing-react-es6-webpack-production-build/