🧑🏽🎓 SvelteKit Tutorial #
SvelteKit Tutorial: with all the buzz around SvelteKit, we'll run through how to set up an accessible, fast and secure Svelte Blog using SvelteKit. Our posts will be powered by Svelte in markdown (MDsveX). Essentially, this new project is an extension on the recent blog post where we looked at the SvelteKit MDsveX Blog starter. This time we are taking a more hands-on approach, customizing the site and adding some MDsveX to the blog posts. If that sounds like the kind of thing you can get excited about, let's get going!
🚀 Let’s Get the Ball Rolling! #
To hit the ground running, we will be using the MDsveX Blog Starter. So, the first thing we need to do is clone it. I will be using pnpm as the package manager, but if you prefer npm, just drop the first p from all the pnpm commands. Let's clone the repo and set it up at the command line:
If this is your first time using SvelteKit, you might find it useful to skim through the post on Getting Started with SvelteKit. However, if anything is unclear, please get in touch (see details below), as it could be
something I forgot to mention! Now, in your browser, go to localhost:5173
.
As you have the site open, have a look though the pages. You will see there is some demo content in there already. In this post, we will:
- update styling;
- change fonts; and
- add a new Svelte component and use it in an MDsveX blog post.
If you're as keen as I am, then let's jump onto the next part and see how you update the styling in the starter.
💄 Styling #
We use SCSS for styling in the starter. Much of the styling is set by variables in two files: src/lib/styles/styles.scss
and src/lib/styles/variables.scss
. Styles propagate globally
from there. This makes it easy to update the site's styling. Let's start by changing the colours
up. Edit src/lib/styles/variables.scss
:
Excuse the inconsistent spelling of the word “colour”! Do other non-Americans do this, or is it just me? 😀
Next, let's remove the italic styling for level 1 headings, deleting that line so that src/lib/styles/styles.scss
ends up looking like this:
No peeking until we have finished! Next, we will change the BlogPostSummary
and Card
components:
Then finally, let's spruce up the home page, whose code is at src/routes/+page.svelte
. We're changing up the title and restyling the “About Me” card:
OK, you can have a look in the browser now. What do you think? Change it up a little more if it's not yet your cup of tea! When you're ready to move on, we'll change the fonts.
🖋 Fonts #
The starter uses self-hosted fonts. This allows the page to load faster, improving user experience. One thing you need to remember is to install the new fonts when you change them. Let's start by uninstalling the starter fonts, which we no longer want at the command line:
Next, as you probably guessed, we will install a replacement font:
We will also use Lato, but that is already installed. Slabo 27px will be used for headings and Lato for other elements. Most free fonts are available as Fontsource packages, you see the Fontsource website for more details . Be sure to check which weights and styles are supported for your chosen font.
Now we have the fonts installed, we need to import them and then set them as our chosen fonts in the SCSS variables file. Let's start with the variables file:
Let's carry on to the final step; importing the fonts. Since all pages use our global layout file
(src/routes/+layout.svelte
), we will import fonts there, removing
the original import:
⚓️ Headings with Scroll to Anchor #
Sadly, we're almost finished. Let's carry on with the next step. I promised we would create a new
svelte component and add it to our blog post markup. We will do exactly that now. We will
implement scroll to anchor. You have probably been on websites on which if you hover over a title,
a little link icon appears. You can copy that link to reference it from somewhere else, or just
click it so the section you are reading scrolls to the top of the screen. That's just what we will
set up now. Let's start by creating the new Heading
component. Make
a new file at src/lib/components/Heading.svelte
:
That code fragment is packed full of sveltisms. There's a bit too much to go into here. It's worth checking the Svelte tutorial for explanations , though also feel free to get in touch if I can help. We rely on default browser behaviour for
the scrolling. An id
will be supplied by the component consumer. We
label our heading with that id
. Because of that, the browser knows
where to scroll when we specify that id
in the anchor element.
This is quite a basic version to demonstrate MDsveX. You can go to town here when you implement it on your own site. For example, you might want to generate the IDs automatically or have custom heading levels. There is so much you can do with this one tiny element.
You will notice we imported a Link icon, which we need to add the icon to our project. Let's get cracking on that.
Link Icon #
Create a new file at src/lib/components/Icons/Link.svelte
and give
it the following content to import the corresponding Feather icons icon:
Our final step is to import the component in a blog post and use it. Open up src/routes/best-medium-format-camera-for-starting-out/index.md
. The file is a little messy, with a lot of front matter because of a temporary workaround for
the Netlify adapter. That aside, let's import and use the Heading element:
Now go to your browser and hover over the link and the link icon should appear, you can click it to scroll to anchor. When you move the mouse away from the link, it should disappear. Hope it's all working. What do you think?
🙌🏽 SvelteKit Tutorial: Wrap Up #
That's it for now. Normally, I would also run automated accessibility tests in Cypress using Axe. Unfortunately, Cypress is not currently compatible with SvelteKit out of the box, though there are a few workarounds you can try . As an alternative, you can install the Axe browser addin, then open up Axe from your browser Dev Tools.
I am keen to hear how you will extend what we have run here, though. What will you blog about?
🙏🏽 SvelteKit Tutorial: Feedback #
Please send me feedback! Have you found the post useful? Would you like to see posts on another topic instead? Get in touch with ideas for new posts. Also, if you like my writing style, get in touch if I can write some posts for your company site on a consultancy basis. Read on to find ways to get in touch, further below. If you want to support posts similar to this one and can spare a couple of dollars, rupees, euros or pounds, please consider supporting me through Buy me a Coffee.
Finally, feel free to share the post on your social media accounts for all your followers who will find it useful. As well as leaving a comment below, you can get in touch via @askRodney on Twitter and also askRodney on Telegram . Also, see further ways to get in touch with Rodney Lab. I post regularly on SvelteKit as well as Gatsby JS among other topics. Also, subscribe to the newsletter to keep up-to-date with our latest projects.