Simple Performance Optimizations on Grofers.com with React, Webpack, HTTP/2
1–7 of 7 posts
Re: Simple Performance Optimizations on Grofers.com with React, Webpack, HTTP/2
#2Re: Simple Performance Optimizations on Grofers.com with React, Webpack, HTTP/2
#3I think brotli can be used. Global usage is 55% according to http://caniuse.com/#search=brotli
Now that we have more time, we have the luxury to setup infrastructure for serving both Zopfli and Brotli. Perhaps one of the next steps for us to make our website even faster.
Re: Simple Performance Optimizations on Grofers.com with React, Webpack, HTTP/2
#42)Are you using Redux to manage all of your state? Is it getting too verbose?
Re: Simple Performance Optimizations on Grofers.com with React, Webpack, HTTP/2
#5Re: Simple Performance Optimizations on Grofers.com with React, Webpack, HTTP/2
#61)Where do you make your api calls in componentDidMount or componentWillMount ? 2)Are you using Redux to manage all of your state? Is it getting too verbose?
yes we use redux and strongly follows its design pattern.
Re: Simple Performance Optimizations on Grofers.com with React, Webpack, HTTP/2
#71)Where do you make your api calls in componentDidMount or componentWillMount ? 2)Are you using Redux to manage all of your state? Is it getting too verbose?
componentDidMount is the right place to call for an API. if you are interested in server-side rendering would recommend this post https://blog.tableflip.io/server-side-rendering-with-react-a... yes we use redux and strongly follows its design pattern.
Have you guys looked into MobX?