React.js Boilerplate

There are a lot of boilerplates for React and it’s hard to decide which boilerplate to use.The below one is a website which where we can search such boilerplate by keyword.https://www.javascriptstuff.com/react-starter-projects/ For example, below react boilerplate provides various functionalities – Redux, GraphQL, SEO…https://github.com/nozzle/react-static

SPA and Google SEO

Nowadays SinglePageApplication is everywhere, providing great performance and user experience. But what about SEO / Will search engine bots be able to see SPAs correctly? Along time ago, when computers are not powerful enough, most search engine bots were just checking HTML static pages.But nowadays, bots got much cleaver and powerful. Google bot surely supports …

Parcel

Parcel is a bundling tool which is similar to Webpack.Parcel uses worker processes to enable multicore compilation, and has a filesystem cache for fast rebuilds even after a restart.Parcel has out of the box support for JS, CSS, HTML, file assets, and more – no plugins needed.https://github.com/parcel-bundler/parcel Webpack is hard to use because it’s configuration …