Another lap
During COVID I was regularly watching Fireship.io on YouTube. Fireship shares out basic tutorials on web frameworks in way that makes it easy to get excited over trying them. After watching one on Svelte, I decided I’d revisit an old favorite.
In the most up to date version of runcalculator, I got the app to be where I always wanted it to be: as an installable app (thanks PWA’s). The changes in this version included:

I experimented with a very lightweight framework called Svelte and realized that I don’t prefer it, but found it interesting.
Svelte feels like a return back to early web development, before Webpack and React. I like how Svelte allows you to bind variables, a feature I miss from when I used Angular. I also like the syntax for component props.
<Component {prop1} bind:value={prop2} />But the rest of .svelte file syntax I can’t say the same for:
<style> and <script> tags, and greatly prefer importing modules{#if}{:else} and {#each} blocks, but not as much as conditional rendering and .map()$: variableName, many times it didn’t seem to fire and I couldn’t tell whyI understand what they were going for by having these files feel like simple little html pages, but the result feels very loose, like the variables are just floating around. It’s very different from the sense of security that using Immutable variables in React affords.
Because Svelte is new, there are not a whole lot of packages available for it, so when developing you are kinda on your own. But it’s also exciting that Svelte is new. It’ll be exciting to see what happens to Svelte in later versions. I did enjoy using it for this project, and might use it again for other simple projects in the future.