0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-29 08:32:05 +01:00
Cybernetically enhanced web apps https://svelte.dev/
Go to file
github-actions[bot] 800f6c076b
Version Packages (#8902)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-07-03 22:52:08 +02:00
.changeset Version Packages (#8902) 2023-07-03 22:52:08 +02:00
.github chore: run tsc properly (#8884) 2023-07-03 14:23:34 +02:00
.vscode Merge version-4 2023-06-10 16:02:51 +05:30
documentation docs: Remove old redundant text (#8893) 2023-07-03 22:31:20 +02:00
packages Version Packages (#8902) 2023-07-03 22:52:08 +02:00
sites/svelte.dev chore: update REPL to 0.5.0-next.10 2023-07-03 00:24:02 +05:30
.editorconfig chore: remove unnecessary indent_size from editorconfig (#5992) 2021-02-17 15:57:35 -05:00
.gitattributes Add a linguist configuration (#5878) 2021-01-18 11:46:51 -08:00
.gitignore Merge version-4 2023-06-10 16:02:51 +05:30
.prettierrc fix: account for sourcemap in meta info (#8778) 2023-06-22 11:59:28 +02:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md (#7183) 2022-01-25 08:48:47 +00:00
CONTRIBUTING.md chore: remove warning from pull request template 2023-06-21 11:33:54 +02:00
LICENSE.md Update license year (#8227) 2023-01-27 11:22:52 -05:00
package.json chore: run tsc properly (#8884) 2023-07-03 14:23:34 +02:00
pnpm-lock.yaml chore: update REPL to 0.5.0-next.10 2023-07-03 00:24:02 +05:30
pnpm-workspace.yaml Merge remote-tracking branch 'origin/version-4' into sites 2023-05-28 01:19:27 +05:30
README.md docs: change Typescript to JSDoc in Readme.md (#8851) 2023-06-26 15:51:28 +02:00

Cybernetically enhanced web apps: Svelte

license Chat

What is Svelte?

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.

Supporting Svelte

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:

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.

Roadmap

You may view our roadmap if you'd like to see what we're currently working on.

Contributing

Please see the Contributing Guide and svelte package for contributing to Svelte.

Development

Pull requests are encouraged and always welcome. Pick an issue and help us out!

To install and work on Svelte locally:

git clone https://github.com/sveltejs/svelte.git
cd svelte
pnpm install

Do not use Yarn to install the dependencies, as the specific package versions in pnpm-lock.json are used to build and test Svelte.

To build the compiler and all the other modules included in the package:

pnpm build

To watch for changes and continually rebuild the package (this is useful if you're using pnpm link to test out changes in a project locally):

pnpm dev

The compiler is written in JavaScript and uses JSDoc comments for type-checking.

Running Tests

pnpm test

To filter tests, use -g (aka --grep). For example, to only run tests involving transitions:

pnpm test -- -g transition

svelte.dev

The source code for https://svelte.dev lives in the sites repository, with all the documentation in the site/content directory. The site is built with SvelteKit.

Is svelte.dev down?

Probably not, but it's possible. If you can't seem to access any .dev sites, check out this SuperUser question and answer.

License

MIT