DEV Community

Cover image for Technology Stack Rundown of SHaNc
Sung M. Kim
Sung M. Kim

Posted on • Originally published at slightedgecoder.com on

Technology Stack Rundown of SHaNc

The post Technology Stack Rundown of SHaNc appeared first on Slight Edge Coder.

In the previous article, I introduced SHaNc, a Static Hacker News clone.
I will talk about following technologies used and why.

  1. GatsbyJS
  2. Styled Components
  3. Netlify
  4. Azure Functions

🏭 Architecture – Reprise

Here is a the recap of the architecture in the previous article.

architecture

Gatsby is used to generate a static page, which is then deployed to Netlify. And Azure Function causes Netlify to rebuild the static page via build webhook.

I will go over each component one by one below.

📜 GatsbyJS

What❓

It’s a static site generator using ReactJS (React hereafter) as UI template engine.

Why? 🤔

There are many static site generators out there, I picked it for two reasons.

  1. My familiarity with React – It helped me create a MVP (Minimum Viable Product) fast
  2. Easy to get started with great documentations

How? 🔨

Gatsby fetches Hacker News data via a publicly available Hacker News API (HN API hereafter) then merges it with React template to create a single HTML file.

Challenge 🤔

Gatsby can fetch external data only via GraphQL data source (Reference Querying Data with GraphQL).

I wanted to use Ryan Florence‘s gatsby-source-firebase as HN API hosted on Firebase.

Ryan’s plugin required Firebase credential to be passed but HN API is public thus required no credential.

Due to a default GitHub license issue, I could not fork, update, & publish my own plugin.

So the next option was to create a custom GraphQL data source, which exposes fetched HN data.

(I will go into more details on how it was implemented in a later blog post)

📜 Styled Components

What❓

It’s a React library that lets you embed CSS in React (Styled Components Home).

Why? 🤔

I started using it out of a curiosity.

But then I realized that it made creating simple stylized React component with ease with familiar CSS syntax (React requires slightly different syntax, className for class attribute, and need to camelize CSS styles with -; lineHeight instead of line-height).

Another benefit I found is that I could name the container making the code readable (instead of using generic “div” or “span”) and intentional.

You can see that storiesComponents is consisted of a story with rank, content, which contains body and meta data.

How? 🔨

As mentioned in “Why?”, I used it to apply styles without an external CSS file keeping each component self-contained (but less flexible as I didn’t use theming functionality).

Why Not? 😤

CSS in JS is very controversial so I won’t go into much details. But you could read up on CSS in JS, and make your own decision😉

📜 Netlify

What ❓

Netlify is a web site hosting company, which makes deploying from GitHub very easy (& 😀 free 💰).

Why? 🤔

I used it because Netlify’s Build WebHook is more accessible than GitHub WebHook.

It was a matter of making a simple HTTPS POST request for Netlify while GitHub required many other steps

How? 🔨

I deployed GitHub repo using similar steps I blogged about.

(Refer to my previous post Deploying Existing Create-React-App on GitHub to Netlify)

Netlify is aware that a project is a Gatsby site thus filling out many values for you (what command to run and what folder to deploy to production)

And also publishing to a master branch (you can set it to another branch) continuously deploys to production as Netlify creates a webhook on GitHub and runs the build automatically.

📜 Azure Functions

What❓

It’s sorta like a Web API you can invoke without requiring a server.

Here is an analogy I heard from somewhere (I think it was Scott Hanselman in one of the Azure related podcasts).

Building your own server to get something work done

– is like “building your own car” to get to one point to another

– You pay for car parts (server parts) and build costs

Deploying your site to a cloud

– is like “buying a car” (a server) – and you are responsible for maintaining it

Calling/invoking Azure Functions

– is like “renting a car” as you don’t take care of the car (server) yourself.

– You just want to go from one place to another (the purpose is to get a piece of work done without requiring a server).

Why? 🤔

AWS Lambda was pain in the butt as I just needed a simple job that runs every hour without much security concern.

How? 🔨

It runs every hour doing a HTTPS POST request to the Netlify’s Build WebHook (Using an experimental PowerShell version of Azure Functions).

Full implementation (I mean really)

Azure Functions Schedule (runs every 60 minutes on the hour)

👋 Parting Words

In this article, I’ve shown you tech stack used to build SHaNc.
Most of the decisions are based on familiarity and ease of use.

In following posts, I will go more into details
(e.g. How to implement a custom GraphQL data source for GatsbyJS).

Leave a feedback on GitHub.
Say hi on Twitter @SlightEdgeCoder.

Top comments (0)