Back to Home

I rebuilt my site using Sapper from scratch

Posted on Tuesday, 20 October 2020 - Suggest An Edit
#svelte#website

Introduction

Well, I’ve been trying out Svelte lately and so far I love it. I finally rebuild my site using Sapper. Previously I was using Gatsby, it was an awesome DX but I want to try something new and fresh.

Reasons

Why did I rebuild my site?

Of course, I want to try this new technology called Svelte. If you read my previous post, I said that I want to rebuild my website using Svelte. Using Sapper, to be more specific.

I only use my previous website as a blog. A place where I put some random post with the main reason of “self-documenting”. I also found it useful when you learned something new and you try to explain it to someone else. It makes me understand it even better.

Why did I choose Svelte/Sapper?

I choose Svelte (or Sapper to be more specific) because it’s a unique framework. Actually, Svelte is a language. Why didn’t I choose something like Vue/Nuxt? Because it’s kinda similar to React/Next in my opinion.

They both use Virtual DOM while Svelte does not. Svelte converts our app into ideal JavaScript at build time, rather than interpreting our application code at runtime.

Rethinking Reactivity with Svelte

My Experience

How was the development experience?

Well, I came from Gatsby which has a lot of plugins. This time I made it using Sapper which has no plugins. I have to do stuff by myself. It’s still a great experience nonetheless.

Svelte is a new technology, meaning that nvim-lsp most likely doesn’t support it (yet). nvim-lsp is a built-in lsp client for a text editor that I use which is Neovim. Thankfully, adding an LSP config for that is quite easy so I made one and opened a pull request for it.

Because of this project, I also have a chance to tinker around even more with Lua stuff in Neovim which I’ll talk about in a different post.

Issues that I encountered

Initially, I want to use SCSS instead of plain CSS. As always, nothing goes smoothly in our life. It conflicts with svelte-image which throws a bunch of errors. To be fair, it doesn’t affect anything, it’s just hurt for me to see those errors whenever I start the dev server. I decided to just use the good ol’ plain CSS.

Another issue that I encountered is the table of content. You see, the table of content has a list of links that has an href of a heading ID. At the time of writing this, Sapper has an issue where if an URL has an href of #heading-id (started with a hash) then it will go to /#heading-id instead of adding the href to the end of the URL like /posts/slug#heading-id. This issue is currently being tracked here.

The solution for it was quite simple, I just need to add this piece of code (thanks to this comment) on my post layout, and poof, the problem’s solved.

import { onMount } from "svelte";
onMount(() => {
	document.querySelectorAll("a").forEach((a) => {
		if (!a.hash || !document.querySelectorAll(a.hash).length) return;
		a.addEventListener("click", (event) => {
			event.preventDefault();
			window.location.hash = event.target.getAttribute("href");
		});
	});
});

You might want to change document to something else because if you use document then it will change the a behaviour of the entire document. You can see mine here. I also use decodeURIComponent to handle Japanese characters.

I also couldn’t make shiki work with MDsveX. There’s nothing wrong with the default highlighter of MDsveX (which is prismjs) but I want to use Shiki because it has the same syntax grammar as VScode and it looks better in my opinion. Though, MDsveX will use Shiki in the future version according to pngwn’s comment.

Technologies I Use

The core

I use Sapper (obviously) for this website. Why did I choose Sapper, you might ask. Well, because Sapper supports SSR. Though at the time of writing this, there has been a Svelte Summit and there’s a panel where Rich Harris, the creator of Svelte said that Sapper will be discontinued and Svelte will support SSR instead.

I am so hyped for this. Svelte will also use Snowpack instead of Rollup so it will support Hot Module Reloading. Couldn’t wait for it to be released to the Master branch. As of the time of writing this, it’s still in a private repo and quite unstable.

It looks so cool at a first glance. If you want to see it yourself, there you go. I found a good article that you might also want to read.

I have an intention of moving this site to Svelte in the future once it supports SSR. Rich Harris said that the future version of Svelte will be quite similar to Sapper so it won’t be a hassle to migrate.

Post and project pages

I use MDsveX as a source for my post and project page. It’s basically like MDX but for Svelte. I use Markdown on my previous site. I chose MDsveX because of this talk. It was a great talk, props to Svelte Indonesia community. The talk convinced me enough to use MDsveX instead of plain Markdown.

I have two separate layouts which are post layout and project layout. If you want to know the differences, just check it out yourself ツ

Stylings

As I mentioned earlier, I was going to use SCSS but got canceled. I use PostCSS instead to utilize its rich plugin ecosystem. Currently, I use autoprefixer to prefix all of my CSS and cssnano to minify my CSS.

Optimisation

I use svelte-image to lazy load the image for my site. Though, I’m having some issues right now. There’s a warning which says

Cannot process a dynamic value: MustacheTag

This is caused by passing a variable to svelte-image component like this.

<image src="{src}" />

<script>
	export let src;
</script>

In other words, svelte-image doesn’t support a dynamic path. I just use svelte-waypoint to lazyload my images until this problem got fixed.

This issue is currently tracked here. At the moment, this issue is not possible to fix because of this reason. I really hope this issue will get fixed soon in the future.

UPDATE Thu, 12 November 2020

I no longer use svelte-image because for some reason, sharp made the image filesize bigger even though the resolution is smaller.

Hosting

I use Vercel to host my site. I used Vercel quite a few in the past and it’s been great. It’s simple to set up and integrate with Github. It’s also free!

Resources

Here are some resources that helped me make this website. Hope you find this useful ツ

Conclusion

All in all, I’m glad that finally decided to rebuild my site using Sapper. It was a great experience. I am really looking forward to svelte@next release because man, that thing looks so damn cool.

Comments