Full stack javascript developer.
Nothing here yet.
No blogs yet.
In a universal app there is a need to destinguish whether it is SSR or client bundling. So we can use webpack.DefinePlugin to define a variable according which we can identify client and "not client" or we can also check if the require object has ens...
I noticed that in some React universal (isomorphic) projects people used the same code to make http requests from client and server using such libraries like isomorphic-fetch or axios. Is that right to make such requests from the server to itself? Ca...
I'm trying to build a simple universal app using Express + Mongoose + React + Redux + Redux saga and run into some difficulties. How to dial with component's data dependencies with redux-saga? How to give component data depenting on wether it is ssr...
I keep my notes in markdown format. I have been using sublime-markdown-extended plugin for Sublime Text 3 for a long time, but the plugin is not supported by the author and has many issues. Do you know a good OS X markdown editor (notes storage) or m...
I would like to know how do you guys deal with styles in React components especially when it comes to server side rendering. I am using Webpack and making bundles for client and server. At this moment I figured out that there are several options: us...