0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-29 16:36:44 +01:00
svelte/README.md

78 lines
2.8 KiB
Markdown
Raw Normal View History

2021-04-30 18:00:18 +02:00
[![Cybernetically enhanced web apps: Svelte](https://sveltejs.github.io/assets/banner.png)](https://svelte.dev)
[![license](https://img.shields.io/npm/l/svelte.svg)](LICENSE.md) [![Chat](https://img.shields.io/discord/457912077277855764?label=chat&logo=discord)](https://svelte.dev/chat)
2016-11-29 16:57:39 +01:00
2019-04-18 05:52:03 +02:00
## 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](https://svelte.dev), or stop by the [Discord chatroom](https://svelte.dev/chat).
2019-04-18 05:52:03 +02:00
## 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:
- [Becoming a backer on Open Collective](https://opencollective.com/svelte).
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](https://svelte.dev/roadmap) if you'd like to see what we're currently working on.
## Contributing
Please see the [Contributing Guide](CONTRIBUTING.md) and [svelte package](packages/svelte) for contributing to Svelte.
### Development
2018-07-25 17:49:56 +02:00
2018-07-25 18:01:37 +02:00
Pull 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!
2018-07-25 17:49:56 +02:00
To install and work on Svelte locally:
```bash
2019-05-21 03:16:31 +02:00
git clone https://github.com/sveltejs/svelte.git
2018-07-25 17:49:56 +02:00
cd svelte
2023-04-18 18:18:00 +02:00
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:
```bash
2023-04-18 18:18:00 +02:00
pnpm build
```
2023-04-18 18:18:00 +02:00
To watch for changes and continually rebuild the package (this is useful if you're using [`pnpm link`](https://pnpm.io/cli/link) to test out changes in a project locally):
```bash
2023-04-18 18:18:00 +02:00
pnpm dev
2018-07-25 17:49:56 +02:00
```
The compiler is written in JavaScript and uses [JSDoc](https://jsdoc.app/index.html) comments for type-checking.
2018-08-04 23:19:08 +02:00
2018-07-25 17:49:56 +02:00
### Running Tests
```bash
2023-04-18 18:18:00 +02:00
pnpm test
2018-07-25 17:49:56 +02:00
```
To filter tests, use `-g` (aka `--grep`). For example, to only run tests involving transitions:
```bash
2023-04-18 18:18:00 +02:00
pnpm test -- -g transition
```
### svelte.dev
The source code for https://svelte.dev lives in the [sites](https://github.com/sveltejs/sites) repository, with all the documentation in the [site/content](site/content) directory. The site is built with [SvelteKit](https://kit.svelte.dev).
## 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](https://superuser.com/q/1413402).
2016-11-29 16:57:39 +01:00
## License
2021-04-30 18:00:18 +02:00
[MIT](LICENSE.md)