Making an app

This tutorial is designed to get you familiar with the process of writing components. But at some point, you’ll want to start writing components in the comfort of your own text editor.

First, you’ll need to integrate Svelte with a build tool. Popular choices are:

Don’t worry if you’re relatively new to web development and haven’t used these tools before. We’ve prepared a simple step-by-step guide, Svelte for new developers, which walks you through the process.

You’ll also want to configure your text editor to treat .svelte files the same as .html for the sake of syntax highlighting. Read this guide to learn how.

Then, once you’ve got your project set up, using Svelte components is easy. The compiler turns each component into a regular JavaScript class — just import it and instantiate with new:

  1. import App from './App.svelte';
  2. const app = new App({
  3. target: document.body,
  4. props: {
  5. // we'll learn about props later
  6. answer: 42
  7. }
  8. });

You can then interact with app using the component API if you need to.