Skip to content
Ignacio Falk

AUTHOR

Ignacio Falk

Senior Software Engineer

I love to learn new things and share what I know. Mentor, Writer, Speaker Member of the local community

Select...
Select...
Overview of the New Signal APIs in Angular cover image

Overview of the New Signal APIs in Angular

Google's Minko Gechev and Jeremy Elbourn announced many exciting things at NG Conf 2024. Among them is the addition of several new signal-based APIs....

Building Mobile Applications with Svelte and NativeScript cover image

Building Mobile Applications with Svelte and NativeScript

Have you ever wanted to build a mobile application using a language you already know? In this tutorial, we'll learn how to start building a mobile application using Svelte and NativeScript....

Declarative Canvas with Svelte cover image

Declarative Canvas with Svelte

The element and the Canvas API let us draw graphics via JavaScript, however, its imperative API can be converted into a Declarative one, using Svelte....

Testing with Vitest cover image

Testing with Vitest

Vitest is a new testing framework powered by Vite. It's still in development and some features may not be ready yet, but it's a nice alternative to try and explore....

State Machines using XState and Svelte (Part 1) cover image

State Machines using XState and Svelte (Part 1)

In this blog post we'll learn about state machines, and how to implement them in Svelte with XState....

Svelte Component Testing with Cypress + Vite cover image

Svelte Component Testing with Cypress + Vite

Cypress is a well-known e2e and integration testing framework, but it can be used to render and test components in isolation. In this blog post, we will set up our environment to test Svelte components while using Vite....

Component Testing in Svelte cover image

Component Testing in Svelte

Testing helps us trust our application, and it's a safety net for future changes. In this tutorial, we will set up our Svelte project to run tests for our components....

Animations in Svelte cover image

Animations in Svelte

Animations can engage your users if done right. In this post, we will explore how to do it with Svelte....

Web Components with Svelte cover image

Web Components with Svelte

In this post, we'll learn how to create a svelte component, export it as a custom element and use it. We'll also learn about limitations when doing it....

Reactivity in Svelte cover image

Reactivity in Svelte

Keeping your application in sync with its state is one of the most important features that a framework can provide. In this post, we'll learn about how reactivity works in Svelte and avoid common issues when using it....

Handling Forms in Svelte cover image

Handling Forms in Svelte

If you're building an app or website, it's very likely that at some point you need to add a form to it. In this post, we'll dive into how to handle forms in Svelte....

Intro to Svelte cover image

Intro to Svelte

Svelte is a JavaScript tool, that may look similar to other frameworks or have similar concepts but it works differently, making it stand out from the rest....