DEV Community

Cover image for Svelte, Javascript but coolest
Shriji
Shriji

Posted on

Svelte, Javascript but coolest

This Looks Strange

If you're a first-time Svelte user such as myself, you might be asking yourself, "What is this strange framework, everything seems not redundant, not confusing and EASY, is this even used?" No worries, I have some answers for you first-time Svelte users. Svelte is a compiler that takes your component code and converts it into a clean JS code. "Svelte makes it joyful and to create interactive UIs."

Remember all I am offering is the truth, nothing more.

Svelte does make it joyful once you understand some of the basics that make Svelte so great. Soon you'll be creating apps much sooner and learn along with the process, giving Agent Smith a much-deserved prescription of Svelte magic if you catch what I'm pitching. Svelte is straightforward and comes with batteries and the learning curve is much less and you understand much quickly with a lot less boilerplate code. Let's take a look at some of the basics of creating Svelte apps.

Creating a New Svelte Application

Know HTML, know Svelte.

Cybernetically enhanced web apps, and so are the creators, contributors and discord chat most friendly and welcoming members of Svelte have made it simple for anyone with HTML and Javascript experience to create Svelte applications. Just enter in these 4 commands (separately) in your command prompt to get started:

npx degit sveltejs/template my-coolest-svelte-project
cd my-coolest-svelte-project
npm install
npm run dev
Enter fullscreen mode Exit fullscreen mode

You will find .svelte files and Svelte components are built on top of HTML. Also, we have a cool REPL and Examples.

Alt Text

Just add data. No boilerplate

Variables are reactive. No Virtual DOM. Don't battle with what's rendered. You write less code which means fewer errors.

Props and Imports

Zero worries components "But wait? where are the complex classes that are exported in React?" Just export variables that are going to be props as simple as that πŸ˜‰.

Alt Text

State via Stores

Svelte's most simplistic approach needs no installation of external libraries and anything on the store can be manipulated by using $ before what is variable is in the store. You do not need Redux.

Please read more about how joyful svelte can be at Shawn's blog and also about Stores + Auth

Were you listening to me neo or looking at the woman in the red dress? *I was..* Look again! https://youtu.be/YgJ5ZEn67tk?t=38

Now you know how to start with Svelte you have become much cooler

Links

Community

Other favourite talks.

post inspired from here, React, Javascript but Cooler

Latest comments (1)

Collapse
 
madza profile image
Madza • Edited

Also, this 😎

Alt