DEV Community

Cover image for SvelteKit 1.0 Just Around the Corner? [UPDATED]
kvetoslavnovak
kvetoslavnovak

Posted on • Updated on

 

SvelteKit 1.0 Just Around the Corner? [UPDATED]

I guess lots of SvelteKit funs have noticed an early September 2022 announcement that SvelteKit is in its release candidate phase:

❗ expect bugs!
✔️ no more planned breaking changes
✔️ countdown to a stable release
❌ feature-complete
❌ tutorials

Watch the announcement and track progress towards 1.0 for more details.

So how is the progress as of the mid/end of November 2022?

There are 7 open issues of 1.0 milestone 😎

SvelteKit 1.0 open issues of 1.0 milestone



There are 12 open issues labeled "p1-important" 😁

SvelteKit 1.0 open issues labeled "p1-important"



There are 0 open issues of 1.0 milestone and labeled "p1-important" 😂

SvelteKit 1.0 open issues of 1.0 milestone and labeled "p1-important"



But hold your horses 😫
There are 5 open issues labeled "breaking-change" 😟

SvelteKit 1.0 open issues labeled "breaking-change"

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.