Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

Svelte

< >

Svelte is a programming language created in 2019 by Rich Harris.

#264on PLDB 5Years Old
Download source code:
git clone https://github.com/sveltejs/svelte
HomepageSource Code

Svelte is a radical new approach to building user interfaces. Whereas traditional frameworks like React and Vue do the bulk of their work in the browser, Svelte shifts that work into a compile step that happens when you build your app. Instead of using techniques like virtual DOM diffing, Svelte writes code that surgically updates the DOM when the state of your app changes.


Example from the web:
<script> let name = 'world'; </script> <h1>Hello {name}!</h1>
- Build the next great programming language Add About Search Keywords Livestreams Labs Resources Acknowledgements Part of the World Wide Scroll