Svelte
Sign in to saveAlso known as sveltejs
Svelte is a free and open-source component-based front-end software framework and language created by Rich Harris and maintained by the Svelte core team.
Key facts
- Software.name
- SvelteKit
- Software.title
- SvelteKit
- Software.logo
- Svelte Logo.svg
- Software.logo_size
- 100px
- Software.author
- Rich Harris
- Software.developer
- The Svelte maintainers, and various contributors. Includes Rich Harris, Conduitry, Tan Li Hau, Ben McCann, and Simon Holthausen
- Software.platform
- Web platform
- Software.genre
- full-stack web framework
- Software.license
- MIT License
via Wikipedia infobox
Source code
Svelte is a new way to build web applications. It's a compiler that takes your declarative components and converts them into efficient JavaScript that surgically updates the DOM. Learn more at the Svelte website, or stop by the Discord chatroom. Svelte is an MIT-licensed open source project with its ongoing development made possible entirely by fantastic volunteers. If you'd like to support their efforts, please consider: Becoming a backer on Open Collective. Funds donated via Open Collective will be used for compensating expenses related to Svelte's development such as hosting costs. If sufficient donations are received, funds may also be used to support Svelte's development more directly. You may view our roadmap if you'd like to see what we're currently working on. Please see the Contributing Guide and the svelte package for information on contributing to Svelte. Probably not, but it's possible. If you can't seem to access any .dev sites, check out this SuperUser question and answer.
Excerpt from the source-code README · 1,729 chars · not written by Vinony
Wikidata facts
- Official website
- svelte.dev
Show 8 more facts
- source code repository URL
- github.com/sveltejs/svelte
- software version identifier
- 3.56.0
- Commons category
- Svelte
- official demo URL
- svelte.dev/playground
- Stack Exchange tag
- stackoverflow.com/tags/svelte
- social media followers
- 17300
- inception
- 2016-11-26
- hashtag
- svelte
via Wikidata · CC0
~8 min read
Article
8 sectionsContents
- History
- Syntax
- Associated projects
- Influence
- Adoption
- See also
- References
- External links
Svelte is a free and open-source component-based front-end software framework and language created by Rich Harris and maintained by the Svelte core team.
Svelte is not a monolithic JavaScript library imported by applications: instead, Svelte compiles HTML templates to specialized code that manipulates the DOM directly, which may reduce the size of transferred files and give better client performance. Application code is also processed by the compiler, inserting calls to automatically recompute data and re-render UI elements when the data they depend on is modified. This also avoids the overhead associated with runtime intermediate representations, such as virtual DOM, unlike traditional frameworks (such as React and Vue) which carry out the bulk of their work at runtime, i.e. in the browser.