DEV Community

Cover image for How to create a new component in svelte using a template - svelte component scaffolding and boilerplate
FrontendTeam
FrontendTeam

Posted on • Originally published at thefrontendteam.com

3 3

How to create a new component in svelte using a template - svelte component scaffolding and boilerplate

Why

Creating new components is probably one of the things you do most in svelte.

And to maximize the developer experience, you must automate every task that you do often.

It's not just to save time, but also to avoid repetitive tasks that annoy and distract us developer.

Here we'll learn hot to create your customized component template once and use it everytime.

How

So imagine to write this command:

npx t6e $name.svelte src/components name=my-component

and get the component as you would have written it, ready into the src/component folder.

It's easy:

1) Create the template. Here you can find the one we use into our svelte projects:

<script lang="ts">
  import { createEventDispatcher } from 'svelte';
  import { writable } from 'svelte/store';
  const dispatch = createEventDispatcher();

  const store = writable({
    hello: ""
  });


</script>

<div class="$name">
    {$store.hello}
</div>

<style lang="scss">
    .$name {
        @apply block
    }
</style>
Enter fullscreen mode Exit fullscreen mode

2) name it $name.svelte and put it in a templates folder

3) to create your component, run

npx t6e templates/$name.svelte src/components name=counter

4) you're done. A new fresh component was save in the src/components/counter.svelte:
$name was replaced by counter in both the file name and the file content

You can now re-use that template for all your components, saving hours every month.

What is t6e?

T6e is an open source scaffolder, boilerplater or put simply it lets you
create any file based on your custom templates.

We created a template for svelte above, but you can create any template and reuse it as you like with this
small open-source tool provided by us at butopen

You can find t6e here:

https://github.com/butopen/t6e

Heroku

Simplify your DevOps and maximize your time.

Since 2007, Heroku has been the go-to platform for developers as it monitors uptime, performance, and infrastructure concerns, allowing you to focus on writing code.

Learn More

Top comments (0)

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay