UNPKG

3.14 kBMarkdownView Raw
1<p>
2 <a href="https://svelte.dev">
3 <img alt="Cybernetically enhanced web apps: Svelte" src="https://sveltejs.github.io/assets/banner.png">
4 </a>
5 <a href="https://www.npmjs.com/package/svelte">
6 <img src="https://img.shields.io/npm/v/svelte.svg" alt="npm version">
7 </a>
8 <a href="https://github.com/sveltejs/svelte/blob/master/LICENSE">
9 <img src="https://img.shields.io/npm/l/svelte.svg" alt="license">
10 </a>
11 <a href="https://svelte.dev/chat">
12 <img src="https://img.shields.io/discord/457912077277855764?label=chat&logo=discord" alt="Chat">
13 </a>
14</p>
15
16
17## What is Svelte?
18
19Svelte 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.
20
21Learn more at the [Svelte website](https://svelte.dev), or stop by the [Discord chatroom](https://svelte.dev/chat).
22
23
24## Supporting Svelte
25
26Svelte is an MIT-licensed open source project with its ongoing development made possible entirely by the support of awesome volunteers. If you'd like to support their efforts, please consider:
27
28- [Becoming a backer on Open Collective](https://opencollective.com/svelte).
29
30Funds 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.
31
32
33## Development
34
35Pull requests are encouraged and always welcome. [Pick an issue](https://github.com/sveltejs/svelte/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc) and help us out!
36
37To install and work on Svelte locally:
38
39```bash
40git clone https://github.com/sveltejs/svelte.git
41cd svelte
42npm install
43```
44
45> Do not use Yarn to install the dependencies, as the specific package versions in `package-lock.json` are used to build and test Svelte.
46
47To build the compiler, and all the other modules included in the package:
48
49```bash
50npm run build
51```
52
53To watch for changes and continually rebuild the package (this is useful if you're using [npm link](https://docs.npmjs.com/cli/link.html) to test out changes in a project locally):
54
55```bash
56npm run dev
57```
58
59The compiler is written in [TypeScript](https://www.typescriptlang.org/), but don't let that put you off — it's basically just JavaScript with type annotations. You'll pick it up in no time. If you're using an editor other than [Visual Studio Code](https://code.visualstudio.com/) you may need to install a plugin in order to get syntax highlighting and code hints etc.
60
61
62### Running Tests
63
64```bash
65npm run test
66```
67
68To filter tests, use `-g` (aka `--grep`). For example, to only run tests involving transitions:
69
70```bash
71npm run test -- -g transition
72```
73
74
75## svelte.dev
76
77The source code for https://svelte.dev, including all the documentation, lives in the [site](site) directory. The site is built with [Sapper](https://sapper.svelte.dev).
78
79### Is svelte.dev down?
80
81Probably not, but it's possible. If you can't seem to access any `.dev` sites, check out [this SuperUser question and answer](https://superuser.com/q/1413402).
82
83## License
84
85[MIT](LICENSE)