Back to server side rendering

01/09/2019

Single Page App (or just SPA) is a great way to speed up development loop, all the representation concerns are kept in the separate artifact and it is way faster to deploy.

SPA renders content gradually after browser already loaded main javascript, SPAs logic starts pulling data from the backend and this results in additional time before seeing end results.

Therefore I’ve decided to move frontend rendering of markdown pages back to the backend rendering with the help of github.com/gomarkdown/markdown, so the pages will be fully rendered once web page is loaded.