Skip to content
The Product Developer

How I created my blog

Tutorial5 min read

If you want to remember something, write it down.

I’m starting a blog. After some time of doubts (pondering about if it’s worth it, thinking that people have already covered all the topics I will want to write about) I decided to give it a try. It was because of three principal reasons:

  • Get deeper into some topics I like: I think writing things down leads to better learning.
  • Help other people.
  • Improve my communication skills.

That said, I will use the first post to explain how I created the blog.

The first decision: where I should publish my content?

I was not sure about owning a domain name or publishing content on sites like Medium, Dev.to or Hashnode. After some research, I decided to publish on my own domain. It brings some benefits:

  • The first one is simple, I own it: I can choose and customize whatever I want.
  • I remove a dependency with a third-party platform.
  • I can still publish the same content on other platforms and redirect people to my personal blog. We have to take care of not hurting the SEO because of the duplicated content here, but we can solve it with canonical URLs.

After making that decision, I will explain why I chose the tools below to create the blog.

Gatsby

Gatsby is an open-source framework based on React that helps developers to build websites.

I’m not experienced in Gatsby at all, making this blog was my first experience with this framework. After being checked some other tools like Hugo that also met my requirements, I decided to give Gatsby a try, as I’m more familiar with its ecosystem.

You can start from scratch, but if you also don’t have previous experience with Gatsby, I would recommend checking the available Gatsby starters: https://www.gatsbyjs.com/starters/. Once there, there are many options that you can pick.

In my case, I initialized the project with the gatsby-theme-minimal-blog starter.

gatsby new minimal-blog LekoArts/gatsby-starter-minimal-blog

After that, you can run the application and start modifying it with the commands below:

cd minimal-blog
gatsby develop

You will have your site accessible at http://localhost:8000.

Customization

Once you have started a new application, you can easily customize the page as you want if you have some concepts about web development, as it uses React, HTML and CSS.

If you are using a Gatsby theme, they have the concept of shadowing, which makes the customization really easy. This feature allows replacing any file in the theme src directory with your own implementation. As an example:

  • Imagine you are using a theme called some-theme and it has a file called some-theme/src/components/post.tsx.
  • If you want to replace that component with your own implementation, you just need to create a new file in your-blog-directory/src/some-theme/components/post.tsx. From that moment, your own implementation will be rendered instead of the default one.
SEO friendly

SEO is really important if you want people to find your website. Apart from making your site fast for search engine crawlers, Gatsby has some useful plugins to improve your implementation from the SEO point of view. Some of the plugins that I'm currently using:

Netlify

Once we have the content for our blog, we need to host it somewhere. I had experience with Github pages for hosting some pages before, but I decided to try Netlify and I finally chose it. It provides some advantages:

  • Continuous deployment: After adding some build settings in just a few clicks, Netlify deploys a new version of the blog every time I push a new change to the repository main branch. Also, it provides other features like deploy previews, rollbacks, or split testing. I'm not currently using all of these features but they can be really useful.

  • Domain configuration: it provides a really easy configuration for a custom domain name. Also, you will have an SSL certificate for free.

Although Netlify is a paid tool, all these features are included in the free plan, which is the one I’m currently using.

Plausible

I want to have some available analytics from the first moment. After trying Google Analytics, I think it’s a bit overkill for my use case. As there are many data I don’t understand, I have a continuous feeling of not taking all the value that it provides.

After some research, I found Plausible. It provides simple analytics with some easy-to-understand dashboards. Also, at least from my point of view, it has some important advantages:

  • It is an open-source tool, with an open product roadmap driven by its community.

  • Because of providing only some simple analytics, it has a very small script so it does not affect the web speed so much

  • Adblockers does not affect Plausible: it does not track any personal data or use cookies so Adblockers usually do not block pages with the Plausible script.

You can find a Plausible demo here.

So, being a software developer, I had a very good experience with these three tools so I recommend any of them if you are in the situation of starting a website.

What do you think of this blog stack?

Share this post!

Thanks for reading this post. If you think it can be interesting for some other people, feel free to share this link with anyone you want. Also, you can use the links below to share it on Twitter, LinkedIn, or Pocket.

© 2023 by The Product Developer. All rights reserved.