Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Svelte

From Wikipedia, the free encyclopedia
JavaScript framework
For a definition of the term "svelte", see the Wiktionary entrysvelte.
Svelte
Original author(s)Rich Harris
Developer(s)The Svelte contributors. Key contributors include Rich Harris, Alan Faubert, Tan Li Hau, Ben McCann, and Simon Holthausen
Initial release26 November 2016; 8 years ago (26 November 2016)
Stable release
5.0.0[1] Edit this on Wikidata / 19 October 2024; 4 months ago (19 October 2024)
Repository
Written inJavaScript,TypeScript Edit this on Wikidata
PlatformWeb platform
TypeWeb framework
LicenseMIT License
WebsiteOfficial websiteEdit this at Wikidata

Svelte is afree and open-sourcecomponent-basedfront-endsoftware framework,[2] and language[3] created by Rich Harris and maintained by the Svelte core team members.[4]

Svelte is not a monolithicJavaScript library imported by applications: instead, Sveltecompiles HTML templates to specialized code that manipulates theDOM directly, which may reduce the size of transferred files and give better client performance.[5] Application code is also processed by the compiler, inserting calls to automatically recompute data[2] and re-render UI elements when the data they depend on is modified.[6] This also avoids the overhead associated with runtime intermediate representations, such asvirtual DOM,[7] unlike traditional frameworks (such asReact andVue) which carry out the bulk of their work at runtime,i.e. in the browser.[5][6][4][8][2][7]

The compiler itself is written inJavaScript.[9][8] Itssource code is licensed underMIT License and hosted onGitHub.[8] Among comparable frontend libraries, Svelte has one of the smallest bundle footprints at merely 2KB.[10]

History

[edit]

The predecessor of Svelte is Ractive.js, which Rich Harris created in 2013.[11]

Version 1 of Svelte was written inJavaScript and was released on 29 November 2016.[12] The name Svelte was chosen by Rich Harris and his coworkers atThe Guardian.[12]

Version 2 of Svelte was released on 19 April 2018. It set out to correct what the maintainers viewed as mistakes in the earlier version such as replacing double curly braces with single curly braces.[12]

Version 3 of Svelte was written inTypeScript and was released on 21 April 2019. It rethought reactivity by using the compiler to instrument assignments behind the scenes.[2]

The SvelteKit web framework was announced in October 2020 and entered beta in March 2021.[13][14] SvelteKit 1.0 was released in December 2022 after two years in development.[15]

Version 4 of Svelte was released on 22 June 2023. It was a maintenance release, smaller and faster than version 3.[16] A part of this release was an internal rewrite from TypeScript back to JavaScript, withJSDoc annotations.[9] This was met with a confusion from the developer community, which was addressed by the creator of Svelte, Rich Harris.[17][18]

Version 5 of Svelte was released on October 19, 2024 at Svelte Summit Fall 2024 with Rich Harris cutting the release live while joined by the other Svelte maintainers. Svelte 5 was a ground-up rewrite of Svelte, changing core concepts such as reactivity and reusability.[19] Its primary feature,runes, reworked how reactive state is declared and used. Runes are function-like macros that are used to declare a reactive state, or code that uses reactive states. These runes are used by the compiler to indicate values that may change and are depended on by other states or the DOM.[20] Svelte 5 also introduces Snippets, which are reusable "snippets" of code that are defined once and can be reused anywhere else in the component.[21] Svelte 5 was initially met with controversy due to its many changes, and thus deprecations caused primarily by runes.[22] However, most of this has subsided since the initial announcement of runes, and the further refining of Svelte 5.

Also at Svelte Summit Fall 2024, Ben McCann announced the Svelte CLI under the sv package name on npm.[23]

Key early contributors to Svelte became involved with Conduitry joining with the release of Svelte 1, Tan Li Hau joining in 2019, and Ben McCann joining in 2020.[12] Rich Harris and Simon Holthausen joinedVercel to work on Svelte fulltime in 2022.[24] Dominic Gannaway joined Vercel from the React core team to work on Svelte fulltime in 2023.[25]

Syntax

[edit]

Svelte applications and components are defined in.svelte files, which areHTML files extended with templating syntax that is based on JavaScript and is similar toJSX.

Svelte's core features are accessed through runes, which syntactically look like functions, but are used asmacros by the compiler. These runes include:

  • The$state rune, used for declaring a reactive state value
  • The$derived rune, used for declaring reactive statederived from one or more states
  • The$effect rune, used for declaring code that reruns whenever its dependencies change

Additionally, the{JavaScript code } syntax can be used for templating in HTML elements and components,[26] similar to template literals in JavaScript. This syntax can also be used in element attributes for uses such as two-way data binding, event listeners, andCSS styling. ATodo List example made in Svelte is below:

<script>lettodos=$state([]);letinput=$state();letall=$derived(todos.length);letdone=$derived(todos.filter(todo=>todo.done).length);functionhandleKey(e){if(e.key==="Enter"){todos.push({text:input.value,done:false});input.value='';}}</script><spanstyle:font-size="20px"style:font-weight="bold">Todo List</span>{done}/{all}<br>{#each todos as {text,done},index}<inputtype="checkbox"bind:checked={todos[index].done}name={text}/><labelfor={text}style:text-decoration-line={done?"line-through":""}>{text}</label><br>{/each}<br><labelfor="input">Add todo</label><br><inputtype="text"name="input"bind:this={input}onkeypress={handleKey}/>

Associated projects

[edit]

SvelteKit
Initial release ()
Stable release
1.15.5[27][28] Edit this on Wikidata / 13 April 2023; 23 months ago (13 April 2023)
Repositoryhttps://github.com/sveltejs/kit Edit this on Wikidata
Written inJavaScript,TypeScript,Svelte Edit this on Wikidata
PlatformWeb platform
TypeWeb framework
LicenseMIT License
Websitesvelte.dev/docs/kit

The Svelte maintainers created SvelteKit as the official way to build projects with Svelte. It is aNext.js-style framework that dramatically reduces the amount of code that gets sent to the browser. The maintainers had previously created Sapper, which was the predecessor of SvelteKit.[29]

The Svelte maintainers also maintain a number of integrations for popular software projects under the Svelte organization including integrations forVite, Rollup,Webpack, TypeScript,VS Code, Chrome Developer Tools,ESLint, and Prettier.[30] A number of external projects such as Storybook have also created integrations with Svelte and SvelteKit.

Influence

[edit]

Vue.js modeled its API and single-file components after Ractive.js, the predecessor of Svelte.[11]

Adoption

[edit]

Svelte is widely praised by developers. Taking the top ranking in multiple large scale developer surveys, it was chosen as theStack Overflow 2021 most loved web framework and 2020 State of JS frontend framework with the most satisfied developers.[31][32]

Svelte has been adopted by a number of high-profile web companies includingThe New York Times,Apple,Spotify,Radio France (French national public radio broadcaster),[33]Square,Yahoo,ByteDance,Rakuten,Bloomberg,Reuters,Ikea,Facebook,FrontPopulaire-2024 andBrave.[34][35][36]

A community group of non-maintainers, known as the Svelte Society, run the Svelte Summit conference, write a Svelte newsletter, host a Svelte podcast, and host a directory of Svelte tooling, components, and templates.[37]

See also

[edit]

References

[edit]
  1. ^https://github.com/sveltejs/svelte/releases/tag/svelte%405.0.0. Retrieved23 October 2024.{{cite web}}:Missing or empty|title= (help)
  2. ^abcdRich Harris (2019-04-22)."Svelte 3: Rethinking reactivity".svelte.dev. Retrieved2021-08-07.
  3. ^Harris, Rich (2018-11-26)."The truth about Svelte".GitHub Gist. Retrieved2022-12-21.
  4. ^abKrill, Paul (December 2, 2016)."Slim, speedy Svelte framework puts JavaScript on a diet".InfoWorld.
  5. ^ab"React vs. Svelte, the JavaScript build-time framework".react-etc.net.
  6. ^ab"Svelte 3 Front-End Framework Moves Reactivity into the JavaScript Language, Q&A with Rich Harris".InfoQ.
  7. ^abRich Harris (2018-12-27)."Virtual DOM is pure overhead".svelte.dev.
  8. ^abc"GitHub - sveltejs/svelte: Cybernetically enhanced web apps". January 11, 2020 – via GitHub.
  9. ^ab"TS to JSDoc Conversion #8569".GitHub.com.
  10. ^Frontendeng.dev (2023-08-01)."Svelte vs React: Which framework is better?".frontendeng.dev.
  11. ^abŚwistak, Tomasz (2020-11-19)."About the Svelte JavaScript framework". Blog.ValueLogic. Archived fromthe original on 2022-03-27. Retrieved2021-06-10.By the way, Vue's syntax has been influenced by Ractive.js, a direct predecessor of Svelte.
  12. ^abcd"Svelte Origins: A JavaScript Documentary".YouTube. 21 June 2022. Retrieved2022-07-09.
  13. ^"Rich Harris: Futuristic Web Development".YouTube. 19 October 2020.Archived from the original on 2021-12-12. Retrieved2021-08-03.
  14. ^Harris, Rich (2021-03-23)."SvelteKit is in public beta".svelte.dev. Retrieved2021-08-03.
  15. ^"Accouncing SvelteKit 1.0". 2022-12-14. Retrieved2022-12-16.
  16. ^team, The Svelte (2023-06-22)."Announcing Svelte 4".svelte.dev. Retrieved2023-08-08.
  17. ^"TS to JSDoc Conversion".Hacker News (news.ycombinator.com). 2023-05-10.
  18. ^"Lordy, I did not expect an internal refactoring PR to end up #1 on Hacker News. ..."Hacker News (news.ycombinator.com). 2023-05-10.
  19. ^"Svelte 5 is alive".svelte.dev. 22 October 2024.
  20. ^"Introducing runes".svelte.dev. 20 September 2023.
  21. ^"{#snippet ...}". Docs.svelte.dev.
  22. ^"Svelte 5 is React, and I wanna cry". r/sveltejs.reddit.com. 14 May 2024.
  23. ^McCann, Ben (2024-10-24)."Introducing the new Svelte CLI".svelte.dev. Retrieved2024-12-20.
  24. ^Harris, Rich (Nov 11, 2021)."today is a big day for @sveltejs: i've joined @vercel to work on it full time!".Twitter. Retrieved2022-09-04.
  25. ^"trueadm/status/1640761270566633472".X (formerly Twitter). Retrieved2023-09-30.
  26. ^"Svelte tutorial page".svelte.dev. Retrieved2022-07-06.
  27. ^"@sveltejs/kitTypeScript icon, indicating that this package has built-in type declarations1.15.5".npmjs. Retrieved26 November 2024.
  28. ^"@sveltejs/kit@1.15.5".GitHub. Retrieved26 November 2024.
  29. ^Harris, Rich (December 31, 2017)."Sapper: Towards the ideal web app framework".svelte.dev. Retrieved2022-11-29.
  30. ^"Svelte".GitHub. Retrieved2021-08-03.
  31. ^"Stack Overflow Developer Survey 2021".Stack Overflow. Archived fromthe original on 2022-06-25. Retrieved2021-10-26.
  32. ^"State of JS 2020: Front-end Frameworks".2020.stateofjs.com. Retrieved2021-10-26.
  33. ^"Radio France migrated their site to SvelteKit".reddit.com. 2 September 2021. Retrieved2024-06-04.
  34. ^"Svelte • Cybernetically enhanced web apps".svelte.dev. Retrieved2021-08-03.
  35. ^"Websites using Svelte - Wappalyzer".www.wappalyzer.com. Retrieved2021-08-03.
  36. ^"Your Profile, Your Home Experience".yourhome.fb.com. Retrieved2021-12-01.
  37. ^"Home - Svelte Society".sveltesociety.dev. Retrieved2021-08-03.

External links

[edit]
.NET
C++
ColdFusion
Common Lisp
Haskell
Java
JavaScript
Perl
PHP
Python
Ruby
Rust
Scala
Smalltalk
Other languages
Dialects
Engines
(comparison)
Frameworks
Client-side
Server-side
Multiple
  • Cappuccino
Libraries
People
Other
Retrieved from "https://en.wikipedia.org/w/index.php?title=Svelte&oldid=1277650841"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp