Skip to content

Commit 7681130

Browse files
authored
chore: update links (#1119)
1 parent 38fcfde commit 7681130

23 files changed

+45
-45
lines changed

apps/svelte.dev/content/blog/2016-11-26-frameworks-without-the-framework.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Frameworks without the framework: why didn't we think of this sooner?"
33
description: You can't write serious applications in vanilla JavaScript without hitting a complexity wall. But a compiler can do it for you.
44
author: Rich Harris
5-
authorURL: https://twitter.com/Rich_Harris
5+
authorURL: https://bsky.app/profile/rich-harris.dev
66
---
77

88
> Wait, this new framework has a _runtime_? Ugh. Thanks, I'll pass.
@@ -12,7 +12,7 @@ We're shipping too much code to our users. Like a lot of front end developers, I
1212

1313
But I was wrong. 100kb of .js isn't equivalent to 100kb of .jpg. It's not just the network time that'll kill your app's startup performance, but the time spent parsing and evaluating your script, during which time the browser becomes completely unresponsive. On mobile, those milliseconds rack up very quickly.
1414

15-
If you're not convinced that this is a problem, follow [Alex Russell](https://twitter.com/slightlylate) on Twitter. Alex [hasn't been making many friends in the framework community lately](https://twitter.com/slightlylate/status/728355959022587905), but he's not wrong. But the proposed alternative to using frameworks like Angular, React and Ember – [Polymer](https://www.polymer-project.org/1.0/) – hasn't yet gained traction in the front end world, and it's certainly not for a lack of marketing.
15+
If you're not convinced that this is a problem, follow [Alex Russell](https://bsky.app/profile/infrequently.org) on BlueSky. Alex [hasn't been making many friends in the framework community lately](https://twitter.com/slightlylate/status/728355959022587905), but he's not wrong. But the proposed alternative to using frameworks like Angular, React and Ember – [Polymer](https://www.polymer-project.org/1.0/) – hasn't yet gained traction in the front end world, and it's certainly not for a lack of marketing.
1616

1717
Perhaps we need to rethink the whole thing.
1818

@@ -30,7 +30,7 @@ Svelte is a new framework that does exactly that. You write your components usin
3030

3131
The [Svelte implementation of TodoMVC](https://svelte-todomvc.surge.sh/) weighs 3.6kb zipped. For comparison, React plus ReactDOM _without any app code_ weighs about 45kb zipped. It takes about 10x as long for the browser just to evaluate React as it does for Svelte to be up and running with an interactive TodoMVC.
3232

33-
And once your app _is_ up and running, according to [js-framework-benchmark](https://github.com/krausest/js-framework-benchmark) **Svelte is fast as heck**. It's faster than React. It's faster than Vue. It's faster than Angular, or Ember, or Ractive, or Preact, or Riot, or Mithril. It's competitive with Inferno, which is probably the fastest UI framework in the world, for now, because [Dominic Gannaway](https://twitter.com/trueadm) is a wizard. (Svelte is slower at removing elements. We're [working on it](https://github.com/sveltejs/svelte/issues/26).)
33+
And once your app _is_ up and running, according to [js-framework-benchmark](https://github.com/krausest/js-framework-benchmark) **Svelte is fast as heck**. It's faster than React. It's faster than Vue. It's faster than Angular, or Ember, or Ractive, or Preact, or Riot, or Mithril. It's competitive with Inferno, which is probably the fastest UI framework in the world, for now, because [Dominic Gannaway](https://bsky.app/profile/trueadm.dev) is a wizard. (Svelte is slower at removing elements. We're [working on it](https://github.com/sveltejs/svelte/issues/26).)
3434

3535
It's basically as fast as vanilla JS, which makes sense because it _is_ vanilla JS – just vanilla JS that you didn't have to write.
3636

apps/svelte.dev/content/blog/2017-09-06-the-zen-of-just-writing-css.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: The zen of Just Writing CSS
33
description: I would say this is the future, but we're already doing it.
44
author: Rich Harris
5-
authorURL: https://twitter.com/Rich_Harris
5+
authorURL: https://bsky.app/profile/rich-harris.dev
66
---
77

88
It's fashionable to dislike CSS. There are lots of reasons why that's the case, but it boils down to this: CSS is _unpredictable_. If you've never had the experience of tweaking a style rule and accidentally breaking some layout that you thought was completely unrelated — usually when you're trying to ship — then you're either new at this or you're a much better programmer than the rest of us.

apps/svelte.dev/content/blog/2017-12-31-sapper-towards-the-ideal-web-app-framework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 'Sapper: Towards the ideal web app framework'
33
description: Taking the next-plus-one step
44
author: Rich Harris
5-
authorURL: https://twitter.com/Rich_Harris
5+
authorURL: https://bsky.app/profile/rich-harris.dev
66
---
77

88
> Quickstart for the impatient: [the Sapper docs](https://sapper.svelte.dev), and the [starter template](https://github.com/sveltejs/sapper-template)

apps/svelte.dev/content/blog/2018-04-18-version-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Svelte v2 is out!
33
description: Here's what you need to know
44
author: Rich Harris
5-
authorURL: https://twitter.com/Rich_Harris
5+
authorURL: https://bsky.app/profile/rich-harris.dev
66
---
77

88
<aside>Our motto is 'move slowly and break things'. No, wait, that came out wrong...</aside>

apps/svelte.dev/content/blog/2018-12-26-svelte-css-in-js.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Using CSS-in-JS with Svelte
33
description: You don't need to, but you can
44
author: Rich Harris
5-
authorURL: https://twitter.com/Rich_Harris
5+
authorURL: https://bsky.app/profile/rich-harris.dev
66
---
77

88
CSS is a core part of any web app. By extension, a UI framework that doesn't have a built-in way to add styles to your components is unfinished.

apps/svelte.dev/content/blog/2018-12-27-virtual-dom-is-pure-overhead.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Virtual DOM is pure overhead
33
description: Let's retire the 'virtual DOM is fast' myth once and for all
44
author: Rich Harris
5-
authorURL: https://twitter.com/Rich_Harris
5+
authorURL: https://bsky.app/profile/rich-harris.dev
66
---
77

88
If you've used JavaScript frameworks in the last few years, you've probably heard the phrase 'the virtual DOM is fast', often said to mean that it's faster than the _real_ DOM. It's a surprisingly resilient meme — for example people have asked how Svelte can be fast when it doesn't use a virtual DOM.

apps/svelte.dev/content/blog/2019-01-31-svelte-on-the-changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Svelte on The Changelog
33
description: Listen to the interview here
44
author: Rich Harris
5-
authorURL: https://twitter.com/Rich_Harris
5+
authorURL: https://bsky.app/profile/rich-harris.dev
66
---
77

88
Earlier this month, I had the privilege of appearing on [The Changelog](https://changelog.com/podcast), a podcast about software development. We had a fun (for me) and wide-ranging conversation:
@@ -14,8 +14,8 @@ Earlier this month, I had the privilege of appearing on [The Changelog](https://
1414

1515
...and, most importantly, Svelte 3.
1616

17-
Unless you hang out in our [Discord server](/chat) or follow [@sveltejs](https://twitter.com/sveltejs) on Twitter, you might not know that Svelte 3 is just around the corner, and it's going to be a huge release. We've rethought the developer experience from the ground up, and while it _will_ be a nuisance if you need to upgrade a Svelte 2 app (more on that soon) we think you're going to love it.
17+
Unless you hang out in our [Discord server](/chat) or follow [@sveltejs](https://bsky.app/profile/svelte.dev) on BlueSky, you might not know that Svelte 3 is just around the corner, and it's going to be a huge release. We've rethought the developer experience from the ground up, and while it _will_ be a nuisance if you need to upgrade a Svelte 2 app (more on that soon) we think you're going to love it.
1818

19-
On the podcast [Adam](https://twitter.com/adamstac), [Jerod](https://twitter.com/jerodsanto) and I talk about some of the changes and why we're making them. You can listen here or on the [podcast page](https://changelog.com/podcast/332).
19+
On the podcast [Adam](https://bsky.app/profile/adamstac.bsky.social), [Jerod](https://bsky.app/profile/jerod.bsky.social) and I talk about some of the changes and why we're making them. You can listen here or on the [podcast page](https://changelog.com/podcast/332).
2020

2121
<audio data-theme="night" style="width: 100%" data-src="https://changelog.com/podcast/332/embed" src="https://cdn.changelog.com/uploads/podcast/332/the-changelog-332.mp3" preload="none" class="changelog-episode" controls></audio><p><a href="https://changelog.com/podcast/332">The Changelog 332: A UI framework without the framework</a> – Listen on <a href="https://changelog.com/">Changelog.com</a></p><script async src="//cdn.changelog.com/embed.js"></script>

apps/svelte.dev/content/blog/2019-04-15-setting-up-your-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Setting up your editor
33
description: Instructions for configuring linting and syntax highlighting
44
author: Rich Harris
5-
authorURL: https://twitter.com/Rich_Harris
5+
authorURL: https://bsky.app/profile/rich-harris.dev
66
draft: true
77
---
88

apps/svelte.dev/content/blog/2019-04-16-svelte-for-new-developers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Svelte for new developers
33
description: Never used Node.js or the command line? No problem
44
author: Rich Harris
5-
authorURL: https://twitter.com/Rich_Harris
5+
authorURL: https://bsky.app/profile/rich-harris.dev
66
---
77

88
This short guide is designed to help you — someone who has looked at the [tutorial](/tutorial) and wants to start creating Svelte apps, but doesn't have a ton of experience using JavaScript build tooling — get up and running.

apps/svelte.dev/content/blog/2019-04-20-write-less-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Write less code
33
description: The most important metric you're not paying attention to
44
author: Rich Harris
5-
authorURL: https://twitter.com/Rich_Harris
5+
authorURL: https://bsky.app/profile/rich-harris.dev
66
---
77

88
All code is buggy. It stands to reason, therefore, that the more code you have to write the buggier your apps will be.

0 commit comments

Comments
 (0)