Skip to main content
Create new
Introduction
Reactivity
Props
Logic
Events
Bindings
Lifecycle
Stores
Motion
Transitions
Animations
Easing
SVG
Actions
Classes
Component composition
Context API
Special elements
Module context
Debugging
7GUIs
Miscellaneous
App.svelte
Typewriter.svelte
<script>
import { onMount } from 'svelte'
const steps = [
{
type: 'command',
command: "blog init example"
},
{
type: 'command',
command: "cd example"
},
{
type: 'command',
command: 'echo "# First Post" > posts/first-post.md'
},
{
type: 'wait',
delay: 1000
},
{
type: 'command',
command: 'git add .'
},
{
type: 'command',
command: "git commit -m 'Added first post'"
},
{
type: 'command',
command: "git push origin blog",
output: `Enumerating objects: 40, done.
Counting objects: 100% (40/40), done.
Compressing objects: 100% (15/15), done.
Writing objects: 100% (40/40), 3.30 KiB | 1.65 MiB/s, done.
Total 40 (delta 3), reused 18 (delta 1), pack-reused 0`
loading Svelte compiler...
/* Select a component to see its compiled code */
result = svelte.compile(source, {
generate: ,
});
/* Select a component to see its compiled code */