Jekyll - Static Site Generator
Jekyll is a static site generator that has been around for long and the documentation is solid.
Setting up a blog with a JavaScript framework such as Vue or React can seem a bit overkill, and most likely you will end up having to use it together with a static site generator anyways (Gatsby for React, for example). Jekyll allows you to re-use components without any hassle if all you need is re-usable components and an easy way to publish blog posts.
Steps to get going:
-
Install Ruby (Jekyll is written in Ruby). I’m on Windows so I used the installer package: Ruby
-
With Ruby installed, proceeded to install Jekyll:
> gem install jekyll
-
Created a new Jekyll site:
> jekyll new C:/my-path
-
Follow the official Jekyll guide on converting a site to Jekyll