diff --git a/packages/transformers/docs/source/_toctree.yml b/packages/transformers/docs/source/_toctree.yml
index 76d779249..3fc96818d 100644
--- a/packages/transformers/docs/source/_toctree.yml
+++ b/packages/transformers/docs/source/_toctree.yml
@@ -13,6 +13,8 @@
title: Building a Vanilla JS Application
- local: tutorials/react
title: Building a React Application
+ - local: tutorials/svelte
+ title: Building a Svelte Application
- local: tutorials/next
title: Building a Next.js Application
- local: tutorials/browser-extension
diff --git a/packages/transformers/docs/source/tutorials/svelte.md b/packages/transformers/docs/source/tutorials/svelte.md
new file mode 100644
index 000000000..c19e263f6
--- /dev/null
+++ b/packages/transformers/docs/source/tutorials/svelte.md
@@ -0,0 +1,459 @@
+# Building a Svelte application
+
+In this tutorial, we'll be building a simple [Svelte](https://svelte.dev/) application that performs multilingual translation using Transformers.js! The final product will look something like this:
+
+
+
+Useful links:
+
+- [Demo on Hugging Face Spaces](https://huggingface.co/spaces/Xenova/svelte-translator)
+
+## Prerequisites
+
+- [Node.js](https://nodejs.org/en/) version 18+
+- [npm](https://www.npmjs.com/) version 9+
+
+## Step 1: Initialise the project
+
+For this tutorial, we will use the [Svelte CLI](https://svelte.dev/docs/cli/overview) to initialise our project. The CLI creates SvelteKit projects and uses Vite under the hood, so the development server command and localhost URL shown below still apply. Run the following command in your terminal:
+
+```bash
+npx sv create svelte-translator
+```
+
+If prompted to install `sv`, type y and press Enter. Then answer the prompts as follows:
+
+1. Template: `SvelteKit minimal`
+2. Type checking: `No` (plain JavaScript)
+3. Add-ons: none
+4. Dependency installation: no, because we will install dependencies in the next step
+
+The minimal template creates a SvelteKit app with the page component in `src/routes/+page.svelte` and the HTML shell in `src/app.html`.
+
+Next, enter the project directory and install the necessary development dependencies:
+
+```bash
+cd svelte-translator
+npm install
+```
+
+To test that our application is working, we can run the following command:
+
+```bash
+npm run dev
+```
+
+Visiting the URL shown in the terminal (e.g., [http://localhost:5173/](http://localhost:5173/)) should show the starter SvelteKit page.
+You can stop the development server by pressing Ctrl + C in the terminal.
+
+## Step 2: Install and configure Transformers.js
+
+Now we get to the fun part: adding machine learning to our application! First, install Transformers.js from [NPM](https://www.npmjs.com/package/@huggingface/transformers) with the following command:
+
+```bash
+npm install @huggingface/transformers
+```
+
+For this application, we will use the [Xenova/nllb-200-distilled-600M](https://huggingface.co/Xenova/nllb-200-distilled-600M) model, which can perform multilingual translation among 200 languages. Before we start, there are 2 things we need to take note of:
+
+1. ML inference can be quite computationally intensive, so it's better to load and run the models in a separate thread from the main (UI) thread.
+2. Since the model is quite large (>1 GB), we don't want to download it until the user clicks the "Translate" button.
+
+We can achieve both of these goals by using a [Web Worker](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers).
+
+Create a file called `worker.js` in the `src/routes` directory. This script will do all the heavy-lifting for us, including loading and running of the translation pipeline. To ensure the model is only loaded once, we will create the `MyTranslationPipeline` class which uses the [singleton pattern](https://en.wikipedia.org/wiki/Singleton_pattern) to lazily create a single instance of the pipeline when `getInstance` is first called, and use this pipeline for all subsequent calls:
+
+```javascript
+import { pipeline, TextStreamer } from "@huggingface/transformers";
+
+class MyTranslationPipeline {
+ static task = "translation";
+ static model = "Xenova/nllb-200-distilled-600M";
+ static instance = null;
+
+ static async getInstance(progress_callback = null) {
+ this.instance ??= pipeline(this.task, this.model, { progress_callback });
+ return this.instance;
+ }
+}
+```
+
+## Step 3: Design the user interface
+
+